'Declaration Public Function New( _ ByVal itemType As Type, _ ByVal autoCreateItemProperties As Boolean, _ ByVal pageSize As Integer, _ ByVal maxRealizedItemCount As Integer _ )
'Usage Dim itemType As Type Dim autoCreateItemProperties As Boolean Dim pageSize As Integer Dim maxRealizedItemCount As Integer Dim instance As New DataGridVirtualizingCollectionView(itemType, autoCreateItemProperties, pageSize, maxRealizedItemCount)
public DataGridVirtualizingCollectionView( Type itemType, bool autoCreateItemProperties, int pageSize, int maxRealizedItemCount )
Parameters
- itemType
- The type of the items contained in the collection.
- autoCreateItemProperties
- true if item properties are to be automatically created; false otherwise.
- pageSize
- The number of items that are contained in each page of data that is loaded in memory.
- maxRealizedItemCount
- The maximum amount of items that can be loaded in memory.