<< 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>.Options |
Description
Allows set/get the Win32 options of the richedit control.
Syntax
' Set
<richeditName>.Options = newOptions
' Get
currentOptions = <richeditName>.Options
Returns (Get only)
Number, richedit options.
Parameters (Set only)
Name |
Type |
Optional |
Meaning |
newOptions |
Number |
No |
Binary mask created from the following equates:
%ECO_AUTOWORDSELECTION - Automatic selection of word on double-click. %ECO_AUTOVSCROLL - Same as %ES_AUTOVSCROLL style. %ECO_AUTOHSCROLL - Same as %ES_AUTOHSCROLL style. %ECO_NOHIDESEL - Same as %ES_NOHIDESEL style. %ECO_READONLY - Same as %ES_READONLY style. %ECO_WANTRETURN - Same as %ES_WANTRETURN style. %ECO_SELECTIONBAR - Same as %ES_SELECTIONBAR style. %ECO_VERTICAL - Same as %ES_VERTICAL style. Available in Asian-language versions only. |
Remarks
Restrictions
See also
Examples
control add richedit name "myRichedit", hDlg, %reMain, "", 5, 5, 100, 25
' Changing the options via binary mask
myRichedit.Options = %ECO_AUTOWORDSELECTION | %ECO_WANTRETURN