B4J Question Possible/how to set zoom scale for HTMLEditor and TextArea controls?

m4.s

Member
Licensed User
Longtime User
I've been able to successfully implement zoom support in my B4J application for both ImageView and WebView controls, using this code:

B4X:
Dim jo As JavaObject = webvFrame
jo.RunMethod("setZoom", Array (dblZoomScale))


When trying to similarly utilize for the HTMEditor and TextArea controls, this type exception results:

java.lang.RuntimeException: Method: setZoom not found in: javafx.scene.control.TextArea


Is there another [Java object] RunMethod param* that can be passed/used instead to add zoom functionality to these 2 additional controls? *Maybe there is documentation somewhere that has ALL the valid RunMethod params that each JavaFX control supports?
 
Top