<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > UI (User Interface) > CONTROLS > Control Types > Richedit Control > Richedit Control Creation > CONTROL ADD RICHEDIT > RichEdit Properties > <RichEditName>.Text |
Description
GET/SET RichEdit text.
Syntax
' Set
sText = <richeditName>.Text
' Get
<richeditName>.Text = sText [, TextType [, Append]]
Returns (Get only)
String, text contents.
Parameters (Set only)
Name |
Type |
Optional |
Meaning |
||||||||||||||||||||||||
TextType |
Number |
Yes |
One of the following equates: •%SF_TEXT (Default) •%SF_RTF •%RTF_UBB sBuffer will be analyzed in order to interpret possible presence of simple UBB like formatting codes like:
|
||||||||||||||||||||||||
Append |
Number |
Yes |
%TRUE or %FALSE indicating if text is to be appended to current text present in control |
Remarks
Restrictions
See also
Examples