VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Tree.InteractiveForms Namespace / PdfInteractiveFormChoiceField Class / IsSort Property
Syntax Remarks Requirements SeeAlso
In This Topic
    IsSort Property (PdfInteractiveFormChoiceField)
    In This Topic
    Gets or sets a value indicating whether field's option items should be sorted alphabetically.
    Syntax
    'Declaration
    
    <DescriptionAttribute("A value indicating whether field's option items should be sorted alphabetically.")>
    <CategoryAttribute("Common")>
    <DefaultValueAttribute(False)>
    Public Property IsSort As Boolean
    
    
    [Description("A value indicating whether field's option items should be sorted alphabetically.")]
    [Category("Common")]
    [DefaultValue(False)]
    public bool IsSort { get; set; }
    
    
    [Description("A value indicating whether field's option items should be sorted alphabetically.")]
    [Category("Common")]
    [DefaultValue(False)]
    public: __property bool get_IsSort();
    public: __property void set_IsSort(
    bool value
    );
    [Description("A value indicating whether field's option items should be sorted alphabetically.")]
    [Category("Common")]
    [DefaultValue(False)]
    public:
    property bool IsSort { bool get(); void set(bool value); }

    Property Value

    True - the field's option items should be sorted alphabetically;
    false - the field's option items should NOT be sorted alphabetically;
    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

    This flag is intended for use by form authoring tools, not by PDF viewer applications. Viewers should simply display the options in the order in which they occur in the Items list.

    Requirements

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

    See Also