|
|
|
SftMask.HideSelection Property |
Defines the display style of selected text when the control doesn't have the input focus.
Syntax
VB.NET |
Boolean = object.HideSelection As Boolean |
||
VB |
Boolean = object.HideSelection As Boolean |
||
C#.NET |
bool Boolean = object.HideSelection; |
||
VC++ |
VARIANT_BOOL Boolean = object->HideSelection;
|
||
C |
HRESULT object->get_HideSelection(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.HideSelection : WordBool; |
||
VB.NET |
object.HideSelection = Boolean As Boolean |
||
VB |
object.HideSelection = Boolean As Boolean |
||
C#.NET |
bool object.HideSelection = Boolean; |
||
VC++ |
VARIANT_BOOL object->HideSelection = Boolean;
|
||
C |
HRESULT object->put_HideSelection(VARIANT_BOOL Boolean); |
||
Delphi |
object.HideSelection := Boolean : WordBool; |
object
A SftMask object.
Boolean
Defines the display style of selected text when the control doesn't have the input focus.
Boolean |
Description |
True |
Selected text is not highlighted when the control does not have the input focus. The selection is not visible if the control does not have the input focus. |
False |
Selected text is highlighted when the control does not have the input focus. The selection is visible even if the control does not have the input focus. |
Comments
The HideSelection property defines the display style of selected text when the control doesn't have the input focus.
The selected text is always highlighted in an edit control that has the input focus. The HideSelection property can only be used to define the appearance of selected text when the control does not have the input focus.