Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType.Fields Namespace / MaskPatternFieldInfo Class / PasswordChar Property


In This Topic
    PasswordChar Property (MaskPatternFieldInfo)
    In This Topic
    Gets or sets the password char.
    Syntax
    'Declaration
     
    
    Public Property PasswordChar As Char
    'Usage
     
    
    Dim instance As MaskPatternFieldInfo
    Dim value As Char
     
    instance.PasswordChar = value
     
    value = instance.PasswordChar
    public char PasswordChar {get; set;}

    Property Value

    The System.Char value indicates the char of the password.
    The default is "\0".
    Remarks
    The PasswordChar can be used to create a password field in a dialog box. Although you can use any SBCS character, most Windows-based applications use the asterisk (*) (Chr(42)).
    See Also