TiPlotChannelCustom.RingBufferSize
TiPlotChannelCustom See Also
Specifies the size of the data buffer used for storing channel data.
property RingBufferSize : Integer;
Description
Use RingBufferSize to get or set the size of the data buffer used for storing
channel data. By setting this property to a non-zero value, the ring buffer
feature is enable. To disable the ring buffer feature, set this property to 0. The
ring buffer will remain a constant size no matter how many data points are
added to the channel and will act like a FIFO (First In First Out).
Example
Delphi
iComponent.Channel[0].RingBufferSize := 1000;
C++ Builder
iComponent->Channel[0]->RingBufferSize = 1000;
Contents | Index | Previous | Next