Xbasic
RTFMEMO.RESET Function
Syntax
Mode as C = .RESET()
Description
The .RESET() method erases the text in an RTF memo object.
Example
The following example erases the 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.reset()Limitations
Desktop applications only.
See Also