ChunkList(Int32, Boolean, Boolean) Constructor
Initializes a new instance of the ChunkList<T> class.
Namespace: DevExpress.Xpf.ChunkList
Assembly: DevExpress.Xpf.Core.v25.2.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
public ChunkList(
int chunkSize,
bool supportPropertyChanged,
bool useChunksCache = false
)
Parameters
| Name | Type | Description |
|---|---|---|
| chunkSize | Int32 | The number of items in a chunk. |
| supportPropertyChanged | Boolean |
|
Optional Parameters
| Name | Type | Default | Description |
|---|---|---|---|
| useChunksCache | Boolean | 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