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 has the input focus.
Get
VB.NET | Boolean = object.PromptUnderline As Boolean |
VB | Boolean = object.PromptUnderline As Boolean |
C#.NET | bool Boolean = object.PromptUnderline; |
VC++ | VARIANT_BOOL Boolean = object->PromptUnderline; VARIANT_BOOL Boolean = object->GetPromptUnderline(); |
C | HRESULT object->get_PromptUnderline(VARIANT_BOOL* Boolean); |
Put
VB.NET | object.PromptUnderline = Boolean As Boolean |
VB | object.PromptUnderline = Boolean As Boolean |
C#.NET | bool object.PromptUnderline = Boolean; |
VC++ | VARIANT_BOOL object->PromptUnderline = Boolean; void object->PutPromptUnderline(VARIANT_BOOL Boolean); |
C | HRESULT object->put_PromptUnderline(VARIANT_BOOL Boolean); |
object
Boolean
Defines whether input fields are underlined when the control has the input focus.
Boolean | Description |
---|---|
True | All modifiable positions in a Masked Edit control are underlined. |
False | Modifiable positions in a Masked Edit control are displayed as defined using the Font property. |
The PromptUnderline property defines whether input fields are underlined when the control has the input focus.
Using PromptUnderline, 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 has the input focus. The PromptUnderlineNoFocus property can be used to define underlining when the control does not have 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.SizePercent = 33 AxSftMask1.Caption.Text = "&Password" AxSftMask1.PromptUnderline = False AxSftMask1.Mask = "" AxSftMask1.PswdChar = "*" AxSftMask1.MaxLength = 16 End Sub
Private Sub Form_Load() SftMask1.Caption.SizePercent = 33 SftMask1.Caption.Text = "&Password" SftMask1.PromptUnderline = False SftMask1.Mask = "" SftMask1.PswdChar = "*" SftMask1.MaxLength = 16 End Sub
private void Form1_Load(object sender, System.EventArgs e) { axSftMask1.Caption.SizePercent = 33; axSftMask1.Caption.Text = "&Password"; axSftMask1.PromptUnderline = false; axSftMask1.Mask = ""; axSftMask1.PswdChar = "*"; axSftMask1.MaxLength = 16; }
{ CDialog::OnInitDialog(); m_pMask1 = m_Mask1.GetControlUnknown(); _ASSERT(m_pMask1 != NULL); m_pMask1->Caption->SizePercent = 33; m_pMask1->Caption->Text = _T("&Password"); m_pMask1->PromptUnderline = VARIANT_FALSE; m_pMask1->Mask = _T(""); m_pMask1->PswdChar = _T("*"); m_pMask1->MaxLength = 16; return TRUE; // return TRUE unless you set the focus to a control }
See Also SftMask Object | Object Hierarchy