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 input fields are underlined when the control does not have the input focus.
Get
VB.NET | Boolean = object.PromptUnderlineNoFocus As Boolean |
VB | Boolean = object.PromptUnderlineNoFocus As Boolean |
C#.NET | bool Boolean = object.PromptUnderlineNoFocus; |
VC++ | VARIANT_BOOL Boolean = object->PromptUnderlineNoFocus; VARIANT_BOOL Boolean = object->GetPromptUnderlineNoFocus(); |
C | HRESULT object->get_PromptUnderlineNoFocus(VARIANT_BOOL* Boolean); |
Put
VB.NET | object.PromptUnderlineNoFocus = Boolean As Boolean |
VB | object.PromptUnderlineNoFocus = Boolean As Boolean |
C#.NET | bool object.PromptUnderlineNoFocus = Boolean; |
VC++ | VARIANT_BOOL object->PromptUnderlineNoFocus = Boolean; void object->PutPromptUnderlineNoFocus(VARIANT_BOOL Boolean); |
C | HRESULT object->put_PromptUnderlineNoFocus(VARIANT_BOOL Boolean); |
object
Boolean
Defines whether input fields are underlined when the control does not have the input focus.
Boolean | Description |
---|---|
True | All modifiable positions in a Masked Edit control are underlined when the control does not have the input focus. |
False | Modifiable positions in a Masked Edit control are displayed as defined using the Font property. |
The PromptUnderlineNoFocus property defines whether input fields are underlined when the control does not have the input focus.
Using PromptUnderlineNoFocus, input fields are easily recognized by users as all modifiable positions are underlined. Even positions where data has already been entered is underlined.
Input fields are underlined only while the control does not have the input focus. The PromptUnderline property can be used to define underlining when the control has the input focus.
When used with a simple edit control (without Mask), all text is underlined.
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load AxSftMask1.Caption.Text = "Pin &Code:" AxSftMask1.Mask = "<p####>" AxSftMask1.PromptChar = "0" AxSftMask1.PromptUnderline = False AxSftMask1.PromptUnderlineNoFocus = True AxSftMask1.PswdChar = "*" End Sub
Private Sub Form_Load() SftMask1.Caption.Text = "Pin &Code:" SftMask1.Mask = "<p####>" SftMask1.PromptChar = "0" SftMask1.PromptUnderline = False SftMask1.PromptUnderlineNoFocus = True SftMask1.PswdChar = "*" End Sub
private void Form1_Load(object sender, System.EventArgs e) { axSftMask1.Caption.Text = "Pin &Code:"; axSftMask1.Mask = "<p####>"; axSftMask1.PromptChar = "0"; axSftMask1.PromptUnderline = false; axSftMask1.PromptUnderlineNoFocus = true; axSftMask1.PswdChar = "*"; }
m_pMask1 = m_Mask1.GetControlUnknown(); _ASSERT(m_pMask1 != NULL); m_pMask1->Caption->Text = _T("Pin &Code:"); m_pMask1->Mask = _T("<p####>"); m_pMask1->PromptChar = _T("0"); m_pMask1->PromptUnderline = VARIANT_FALSE; m_pMask1->PromptUnderlineNoFocus = VARIANT_TRUE; m_pMask1->PswdChar = _T("*"); return TRUE; }
See Also SftMask Object | Object Hierarchy