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