TiLedMatrix.IndicatorCaption
TiLedMatrix
Used to set the caption of a specific indicator at runtime.
property IndicatorCaption[Row, Col: Integer] : String;
Description
Use the IndicatorCaption property to get or set the caption of a specific
indicator at runtime.
Example
Delphi
iComponent.IndicatorCaption[5,8] := 'ABC'; //Sets row 5, col 8 to ABC
C++ Builder
iComponent->IndicatorCaption[5][8] = "ABC"; //Sets row 5, col 8 to ABC
Note: Row and Col are 0 based.
Contents | Index | Previous | Next