Xbasic
RTFMEMO.LEFT_JUSTIFY Function
Syntax
.LEFT_JUSTIFY()
Description
The .LEFT_JUSTIFY() method left justifies text in an RTF memo object.
Example
The following example left justifies text in an RTF field in an open form.
dim obj as P
obj = :Customer_Information:rtfmemofield.this
obj.rtf.insert_text("This is RTF text")
obj.rtf.left_justify()Limitations
Desktop applications only.
See Also