TextArea.SelectionAlignment
From Xojo Documentation
Property (As TextAlignments )
aTextArea.SelectionAlignment = newTextAlignmentsValue
or
TextAlignmentsValue = aTextArea.SelectionAlignment
New in 2019r2
Supported for all project types and targets.
or
TextAlignmentsValue = aTextArea.SelectionAlignment
New in 2019r2
Supported for all project types and targets.
Controls paragraph alignment of the selected text.
Notes
Use TextAlignments with this property.
Examples
This example sets the alignment of the selected paragraph in TextArea1 to centered:
TextArea1.SelectionAlignment = TextAlignments.Center
This example displays a dialog box if the selected paragraph is centered.
If TextArea1.SelectionAlignment = TextAlignments.Center then
MessageBox("The text is centered.")
End If
MessageBox("The text is centered.")
End If
See Also
TextAlignments enumeration.