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

    Property Value

    True - the field is automatically divided into as many equally spaced positions, or combs, as the value of MaxLength, and the text is laid out into those combs.
    false - the field is not divided into combs.

    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

    Property value has effect only if MaxLength is greater than 0, IsMultiline, IsPassword and IsFileSelect are set to false.

    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