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