VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Tree.InteractiveForms Namespace / PdfInteractiveFormTextField Class / IsPassword Property
Syntax Remarks Requirements SeeAlso
In This Topic
    IsPassword Property (PdfInteractiveFormTextField)
    In This Topic
    Gets or sets a value indicating whether this field is password.
    Syntax
    'Declaration
    
    <DescriptionAttribute("A value indicating whether this field is password.")>
    <CategoryAttribute("Common")>
    <DefaultValueAttribute(False)>
    Public Property IsPassword As Boolean
    
    
    [Description("A value indicating whether this field is password.")]
    [Category("Common")]
    [DefaultValue(False)]
    public bool IsPassword { get; set; }
    
    
    [Description("A value indicating whether this field is password.")]
    [Category("Common")]
    [DefaultValue(False)]
    public: __property bool get_IsPassword();
    public: __property void set_IsPassword(
    bool value
    );
    [Description("A value indicating whether this field is password.")]
    [Category("Common")]
    [DefaultValue(False)]
    public:
    property bool IsPassword { bool get(); void set(bool value); }

    Property Value

    True - the field is intended for entering a secure password that should not be echoed visibly to the screen;
    false - the field does NOT contain password.

    Value of this property is a part of inheritable flag group.
    Property value is taken from the field flags if at least one flag is specified explicitly.
    Property value is taken from the field flags of the field parent in the field hierarchy if not one flag is specified explicitly.
    Remarks

    Characters typed from the keyboard should instead be echoed in some unreadable form, such as asterisks or bullet characters. To protect password confidentiality, viewer applications should never store the value of the text field in the PDF file if this flag is set.

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also