Xbasic
RTFMEMO.GET_JUSTIFICATION Function
Syntax
Mode as C = .GET_JUSTIFICATION()
Description
The .GET_JUSTIFICATION() method full justifies text in an RTF memo object.
Example
The following example returns the justification mode 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()
? obj.rtf.get_justification()
= "Full"Limitations
Desktop applications only.
See Also