ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF.Forms Namespace / ChoiceField Class / SelectedIndices Property




In This Topic
    SelectedIndices Property
    In This Topic
    Gets or sets the selected indices.
    Syntax
    'Declaration
     
    Public Property SelectedIndices As Integer()
    'Usage
     
    Dim instance As ChoiceField
    Dim value() As Integer
     
    instance.SelectedIndices = value
     
    value = instance.SelectedIndices
    public int[] SelectedIndices {get; set;}
    public: __property int[]* get_SelectedIndices();
    public: __property void set_SelectedIndices( 
       int[][]* value
    );
    public:
    property array<int>^ SelectedIndices {
       array<int>^ get();
       void set (    array<int>^ value);
    }

    Property Value

    The 0-based selected indices for the field.
    Exceptions
    ExceptionDescription
    If any supplied index is out-of-bounds.
    See Also