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 cursor advances to the next input field when a numeric field is full.
Get
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; VARIANT_BOOL Boolean = object->GetAutoAdvance(); |
C | HRESULT object->get_AutoAdvance(VARIANT_BOOL* Boolean); |
Put
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; void object->PutAutoAdvance(VARIANT_BOOL Boolean); |
C | HRESULT object->put_AutoAdvance(VARIANT_BOOL Boolean); |
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. |
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.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load AxSftMask1.Caption.SizePercent = 33 AxSftMask1.Caption.Text = "&IP:" AxSftMask1.Mask = "$I^03(0,255)\.$I^03(0,255)\.$I^03(0,255)\.$I^03(0,255)" AxSftMask1.Text = "127.0.0.1" AxSftMask1.EditStyle = SftMaskEditStyleConstants.editSftMaskUpDown AxSftMask1.AutoAdvance = True AxSftMask1.AutoSize = True AxSftMask1.TabAdvance = True AxSftMask1.TabAdvanceLast = True AxSftMask1.EntrySelect = SftMaskEntrySelectConstants.entrySftMaskSelectHome AxSftMask1.EntrySelectMouse = True End Sub
Private Sub Form_Load() SftMask1.Caption.SizePercent = 33 SftMask1.Caption.Text = "&IP:" SftMask1.Mask = "$I^03(0,255)\.$I^03(0,255)\.$I^03(0,255)\.$I^03(0,255)" SftMask1.Text = "127.0.0.1" SftMask1.EditStyle = editSftMaskUpDown SftMask1.AutoAdvance = True SftMask1.AutoSize = True SftMask1.TabAdvance = True SftMask1.TabAdvanceLast = True SftMask1.EntrySelect = entrySftMaskSelectHome SftMask1.EntrySelectMouse = True End Sub
private void Form1_Load(object sender, System.EventArgs e) { axSftMask1.Caption.SizePercent = 33; axSftMask1.Caption.Text = "&IP:"; axSftMask1.Mask = @"$I^03(0,255)\.$I^03(0,255)\.$I^03(0,255)\.$I^03(0,255)"; axSftMask1.Text = "127.0.0.1"; axSftMask1.EditStyle = SftMaskEditStyleConstants.editSftMaskUpDown; axSftMask1.AutoAdvance = true; axSftMask1.AutoSize = true; axSftMask1.TabAdvance = true; axSftMask1.TabAdvanceLast = true; axSftMask1.EntrySelect = SftMaskEntrySelectConstants.entrySftMaskSelectHome; axSftMask1.EntrySelectMouse = true; }
m_pMask1 = m_Mask1.GetControlUnknown(); _ASSERT(m_pMask1 != NULL); m_pMask1->Caption->SizePercent = 33; m_pMask1->Caption->Text = _T("&IP:"); m_pMask1->Mask = _T("$I^03(0,255)\\.$I^03(0,255)\\.$I^03(0,255)\\.$I^03(0,255)"); m_pMask1->Text = _T("127.0.0.1"); m_pMask1->EditStyle = editSftMaskUpDown; m_pMask1->AutoAdvance = VARIANT_TRUE; m_pMask1->AutoSize = VARIANT_TRUE; m_pMask1->TabAdvance = VARIANT_TRUE; m_pMask1->TabAdvanceLast = VARIANT_TRUE; m_pMask1->EntrySelect = entrySftMaskSelectHome; m_pMask1->EntrySelectMouse = VARIANT_TRUE; return TRUE;
See Also SftMask Object | Object Hierarchy