|
|
|
SftMask.EntrySelectMouse Property |
Defines whether mouse clicks honor the EntrySelect property setting.
Syntax
VB.NET |
Boolean = object.EntrySelectMouse As Boolean |
||
VB |
Boolean = object.EntrySelectMouse As Boolean |
||
C#.NET |
bool Boolean = object.EntrySelectMouse; |
||
VC++ |
VARIANT_BOOL Boolean = object->EntrySelectMouse;
|
||
C |
HRESULT object->get_EntrySelectMouse(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.EntrySelectMouse : WordBool; |
||
VB.NET |
object.EntrySelectMouse = Boolean As Boolean |
||
VB |
object.EntrySelectMouse = Boolean As Boolean |
||
C#.NET |
bool object.EntrySelectMouse = Boolean; |
||
VC++ |
VARIANT_BOOL object->EntrySelectMouse = Boolean;
|
||
C |
HRESULT object->put_EntrySelectMouse(VARIANT_BOOL Boolean); |
||
Delphi |
object.EntrySelectMouse := Boolean : WordBool; |
object
A SftMask object.
Boolean
Defines whether mouse clicks honors the EntrySelect property setting.
Boolean |
Description |
True |
When the control receives the input focus as a result of mouse input (left mouse button), the behavior defined using the EntrySelect property is used. |
False |
When the control receives the input focus as a result of mouse input (left mouse button), no selection takes place and the insertion point is positioned where the mouse button was clicked (possibly adjusted to the nearest input position). |
Comments
The EntrySelectMouse property defines whether mouse clicks honor the EntrySelect property setting.