B4J Question TextArea alignment

hanyelmehy

Active Member
Licensed User
Longtime User
any idea how to chane TextArea alignment to right (i need multi line edit text box)
set Style to "-fx-alignment: center-right" or other work only with TextField with no effect on TextArea
 

hanyelmehy

Active Member
Licensed User
Longtime User
[SOLVED]
To set to right use
B4X:
Dim jo As JavaObject = TextArea
jo.RunMethod("setNodeOrientation", Array("RIGHT_TO_LEFT"))
 
Upvote 0
Top