Skip to main content
A newer version of this page is available. .

ChunkList(Int32, Boolean, Boolean) Constructor

Initializes a new instance of the ChunkList<T> class.

Namespace: DevExpress.Xpf.ChunkList

Assembly: DevExpress.Xpf.Core.v19.1.dll

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

true to monitor the PropertyChanged event for items; otherwise, false.

Optional Parameters

Name Type Default Description
useChunksCache 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