RichEdit.GetOption Method (Typed)
|
|
Determine the status of a particular option for the rich edit.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.24 GA
Syntax VIRTUAL METHOD GetOption(
kOption AS LONG
) AS LOGIC
public virtual bool GetOption(
int kOption
)
Request Example
View SourceParameters
- kOption
- Type: Long
One of the following constants representing the option whose status you want to check:
Return Value
Type:
Logic
TRUE if the option is enabled; otherwise, FALSE.
Remarks| Constant | Description |
| REOPT_AUTOWORD | Automatic selection of a word on double-click |
| REOPT_AUTOVSCROLL | Automatic vertical scrolling |
| REOPT_AUTOHSCROLL | Automatic horizontal scrolling |
| REOPT_NOHIDESEL | Selection is not hidden when focus is lost |
| REOPT_READONLY | Editing of text is not permitted |
| REOPT_WANTRETURN | Captures carriage return keystrokes |
| REOPT_SAVESEL | Selection is saved focus is lost |
| REOPT_SELBAR | Has a selection bar |
See Also