TiSpectrumDisplay.BarValue
TiSpectrumDisplay See Also
Used to set a specific bar's value at runtime.
property BarValue[Index : Integer] : Double;
Description
Use BarValue to get or set the value of a particular bar at runtime.
Example
Delphi
iComponent.BarValue[5] := 25; //Sets the 6th bar from the left to a value of 25
C++ Builder
iComponent->BarValue[5] = 25; //Sets the 6th bar from the left to a value of 25
Note: Row and Col are 0 based.
Contents | Index | Previous | Next