|
|
|
SftMask.AutoAdvance Property |
Defines whether the cursor advances to the next input field when a numeric field is full.
Syntax
VB.NET |
Boolean = object.AutoAdvance As Boolean |
||
VB |
Boolean = object.AutoAdvance As Boolean |
||
C#.NET |
bool Boolean = object.AutoAdvance; |
||
VC++ |
VARIANT_BOOL Boolean = object->AutoAdvance;
|
||
C |
HRESULT object->get_AutoAdvance(VARIANT_BOOL* Boolean); |
||
Delphi |
Boolean := object.AutoAdvance : WordBool; |
||
VB.NET |
object.AutoAdvance = Boolean As Boolean |
||
VB |
object.AutoAdvance = Boolean As Boolean |
||
C#.NET |
bool object.AutoAdvance = Boolean; |
||
VC++ |
VARIANT_BOOL object->AutoAdvance = Boolean;
|
||
C |
HRESULT object->put_AutoAdvance(VARIANT_BOOL Boolean); |
||
Delphi |
object.AutoAdvance := Boolean : WordBool; |
object
A SftMask object.
Boolean
Defines whether the cursor advances to the next input field when a numeric field is full.
Boolean |
Description |
True |
The input caret automatically advances to the next input field when a numeric field is full. |
False |
The input caret remains at its current position. |
Comments
The AutoAdvance property defines whether the cursor advances to the next input field when a numeric field is full.
To advance to the next control when valid input has been entered use the AutoTab property instead.