VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Tree.InteractiveForms Namespace / PdfInteractiveFormChoiceField Class / SelectedItemIndexes Property
Syntax Remarks Requirements SeeAlso
In This Topic
    SelectedItemIndexes Property (PdfInteractiveFormChoiceField)
    In This Topic
    Gets or sets an array of integer values, sorted in ascending order, representing the zero-based indices in the Items collection of the currently selected option items.
    Syntax
    'Declaration
    
    <RefreshPropertiesAttribute(Repaint)>
    <CategoryAttribute("Value")>
    <DefaultValueAttribute(null)>
    <DescriptionAttribute("Array of integer values, sorted in ascending order, representing the zero-based indices in the Items collection of the currently selected option items.")>
    Public Overridable Property SelectedItemIndexes As System.Int32[]
    
    
    [RefreshProperties(Repaint)]
    [Category("Value")]
    [DefaultValue(null)]
    [Description("Array of integer values, sorted in ascending order, representing the zero-based indices in the Items collection of the currently selected option items.")]
    public virtual System.Int32[] SelectedItemIndexes { get; set; }
    
    
    [RefreshProperties(Repaint)]
    [Category("Value")]
    [DefaultValue(null)]
    [Description("Array of integer values, sorted in ascending order, representing the zero-based indices in the Items collection of the currently selected option items.")]
    public: __property virtual System.Int32[] get_SelectedItemIndexes();
    public: __property virtual void set_SelectedItemIndexes(
    System.Int32[]* value
    );
    [RefreshProperties(Repaint)]
    [Category("Value")]
    [DefaultValue(null)]
    [Description("Array of integer values, sorted in ascending order, representing the zero-based indices in the Items collection of the currently selected option items.")]
    public:
    virtual property System.Int32[] SelectedItemIndexes { System.Int32[] get(); void set(array<System.Int32>^ value); }
    Remarks

    This entry is required when two or more elements in the Items array have different names but the same export value or when the value of the choice field is an array. In other cases, the entry is permitted but not required.

    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