-
Bug
-
Resolution: Fixed
-
P4
-
fx2.0
In the below code, text.setTextAlignment(TextAlignment.RIGHT); has no effect until text.setWrappingWidth(value) is set.
private Text textAlignedRight() {
Text text = new Text("This content should be\naligned \nright.");
text.setLayoutY(350);
text.setTextAlignment(TextAlignment.RIGHT);
return text;
}
private Text textAlignedRight() {
Text text = new Text("This content should be\naligned \nright.");
text.setLayoutY(350);
text.setTextAlignment(TextAlignment.RIGHT);
return text;
}