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
            
            
            
            
            
            
            
            
            
            
            See Also