Gets or sets a value indicating whether multiple options can be selected.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Property MultiSelect As Boolean
             
        
            
            'Usage
 
Dim instance As ListBox
Dim value As Boolean
 
instance.MultiSelect = value
 
value = instance.MultiSelect
             
        
            
            public bool MultiSelect {get; set;}
             
        
            
            public: __property bool get_MultiSelect();
public: __property void set_MultiSelect( 
   bool value
);
             
        
            
            public:
property bool MultiSelect {
   bool get();
   void set (    bool value);
}
             
        
             
        
            
            
            Property Value
Whether multiple options can be selected.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also