>>-anEditControl~GetText---------------------------------------><
The GetText method returns the entire contents of the text buffer of the edit control as a string. The method works the same for both single-line and multi-line edit controls. With multi-line edit controls, the returned string will contain the carriage return and line-feed characters present in the text buffer. The programmer does not need to worry about the length of the text in the edit control. All the text is returned no matter what the length of the text is.
The text in the edit control.
For an example, refer to the SetText example.