Please enable JavaScript to view this site.

thinBasic Help Manual

* * HELP & MANUAL PREMIUM PACK 4 DEMO VERSION * *

This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.

This version is copyright and may only be used for local testing purposes. It may not be distributed.

Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.

 

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

Created with Help+Manual 8 and styled with Premium Pack Version 4 © by EC Software