TiStripChart.MinBufferSize

TiStripChart See Also

Specifies the minimum buffer size when storing TimeIndex and Channel data.

property MinBufferSize : Integer;

Description

Use MinBufferSize to set the minimum buffer size for storing the TimeIndex and Channel data. When the number of data points exceeds the MaxBufferSize, the buffer size will be reduced to the MinBufferSize. All previous data points will be lost (MaxBufferSize – MinBufferSize). When either the MaxBufferSize or MinBufferSize equals 0 or MinBufferSize is greater than MaxBufferSize, this feature is disabled. By default, this feature is disabled with the MaxBufferSize and MinBufferSize equaling 0.

Example

Delphi

iComponent.MinBufferSize := 10000;

C++ Builder

iComponent->MinBufferSize = 10000;

Warning: Time index values will be shifting when this feature is enabled.

Contents | Index | Previous | Next