DataGridSelectedItemsCollection<T> Constructor
 
            
                In This Topic
            
            Initializes a new instance of the 
DataGridSelectedItemsCollection<T> class.
 
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Function New( _
   ByVal  As Func(Of Integer,T), _
   ByVal  As Func(Of Integer), _
   ByVal  As Func(Of T,Boolean), _
   ByVal  As Func(Of IEnumerable(Of T)) _
)
             
        
            
            public DataGridSelectedItemsCollection<T>( 
   Func<int,T> ,
   Func<int> ,
   Func<T,bool> ,
   Func<IEnumerable<T>> 
)
             
        
             
        
            Parameters
- indexer
 
- The indexer function.
 - count
 
- The count function.
 - contains
 
- The contains function.
 - enumerable
 
- The enumerable function.
 
             
            
            
            
            
            
            
            
            
            
            
            
            See Also