Other |
---|
tbdUnresolved |
Relates :
|
|
Relates :
|
Currently there is no way for JavaFX applications to easily be notified about changes of the input language and its direction. This might be implemented using the Platform Preferences API. One possibility is to encode this information in an object with the following fields: ``` String languageName; String languageCode; enum Direction { LEFT_TO_RIGHT, RIGHT_TO_LEFT, VERTICAL } direction; ```