Xbasic
RTFMEMO.RIGHT_JUSTIFY Function
Syntax
.RIGHT_JUSTIFY()
Description
The .RIGHT_JUSTIFY() method right justifies text in an RTF memo object.
Example
The following example right 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.right_justify()Limitations
Desktop applications only.
See Also