SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Defines whether the next control in the tab order receives the input focus after valid data has been entered.
Get
VB.NET | Boolean = object.AutoTab As Boolean |
VB | Boolean = object.AutoTab As Boolean |
C#.NET | bool Boolean = object.AutoTab; |
VC++ | VARIANT_BOOL Boolean = object->AutoTab; VARIANT_BOOL Boolean = object->GetAutoTab(); |
C | HRESULT object->get_AutoTab(VARIANT_BOOL* Boolean); |
Put
VB.NET | object.AutoTab = Boolean As Boolean |
VB | object.AutoTab = Boolean As Boolean |
C#.NET | bool object.AutoTab = Boolean; |
VC++ | VARIANT_BOOL object->AutoTab = Boolean; void object->PutAutoTab(VARIANT_BOOL Boolean); |
C | HRESULT object->put_AutoTab(VARIANT_BOOL Boolean); |
object
Boolean
Defines whether the next control in the tab order receives the input focus after valid data has been entered.
Boolean | Description |
---|---|
True | The input focus advances to the next control. |
False | The input focus remains unchanged. |
The AutoTab property defines whether the next control in the tab order receives the input focus after valid data has been entered.
The input focus can automatically advance to the next control in the tab order once the data entered into the control is valid. Input data is considered valid if it matches the defined mask (Mask property) completely and the CustomValidation event succeeds (i.e., Cancel is set to False).
The AutoTab property has no effect if the control is used as a simple edit control (without Mask).
See Also SftMask Object | Object Hierarchy