ChunkList(Int32, Boolean, Boolean) Constructor
In This Article
Initializes a new instance of the ChunkList<T> class.
Namespace: DevExpress.Xpf.ChunkList
Assembly: DevExpress.Xpf.Core.v24.2.dll
NuGet Package: DevExpress.Wpf.Core
#Declaration
public ChunkList(
int chunkSize,
bool supportPropertyChanged,
bool useChunksCache = false
)
#Parameters
Name | Type | Description |
---|---|---|
chunk |
Int32 | The number of items in a chunk. |
support |
Boolean | true to monitor the Property |
#Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
use |
Boolean | False | true to store chunk indexes for collection items in a special hash table; otherwise, false. |
#Remarks
If the useChunksCache parameter is set to true, the ChunkList<T> instance will store chunk indexes for collection items in a special hash table. The hash table will take up additional memory.
See Also