|
|
|
SftMask.TabAdvanceLast Property |
Defines whether the Tab key advances to the last position in the control or to the next control instead.
Syntax
VB.NET |
Boolean = object.TabAdvanceLast As Boolean |
||
VB |
Boolean = object.TabAdvanceLast As Boolean |
||
C#.NET |
bool Boolean = object.TabAdvanceLast; |
||
VC++ |
VARIANT_BOOL Boolean = object->TabAdvanceLast;
|
||
C |
HRESULT object->get_TabAdvanceLast(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.TabAdvanceLast : WordBool; |
||
VB.NET |
object.TabAdvanceLast = Boolean As Boolean |
||
VB |
object.TabAdvanceLast = Boolean As Boolean |
||
C#.NET |
bool object.TabAdvanceLast = Boolean; |
||
VC++ |
VARIANT_BOOL object->TabAdvanceLast = Boolean;
|
||
C |
HRESULT object->put_TabAdvanceLast(VARIANT_BOOL Boolean); |
||
Delphi |
object.TabAdvanceLast := Boolean : WordBool; |
object
A SftMask object.
Boolean
Defines whether the Tab key advances to the last position in the control or to the next control instead.
Boolean |
Description |
True |
The last position in the control can be reached using the Tab key. |
False |
The last position in the control cannot be reached using the Tab key and the input focus advances to the next control instead. |
Comments
The TabAdvanceLast property defines whether the Tab key advances to the last position in the control or to the next control instead.
This is typically used if trailing literal characters are present, so it is undesirable to tab to the end of the control.
The TabAdvanceLast property has no effect if the TabAdvance property is set to False.