Beginning_of_Data - DfBaseRichEdit
Places the cursor at beginning of the text in control
Type: Procedure
Syntax
Procedure Beginning_of_Data
Call Example
Send Beginning_of_Data
Description
Places the cursor at the beginning of the text in the control.
Sample
This sample sets the contents of the oRichEdit1 control to "Some RTF text" and then places the cursor at the beginning of the text in the control
Procedure DisplayText
string sText
move "Some RTF text" to sText
set Value of oRichEdit1 to sText
send Beginning_of_Data of oRichEdit1
End_Procedure // DisplayText