TiLedMatrix.IndicatorActive
TiLedMatrix
Used to set an specific indicator active state at runtime.
property IndicatorActive[Row, Col: Integer] : Boolean;
Description
Use IndicatorActive to get or set the indicator active state at runtime.
Example
Delphi
iComponent.IndicatorActive[5,8] := True; //Sets row 5, col 8 to Active
C++ Builder
iComponent->IndicatorActive[5][8] = True; //Sets row 5, col 8 to Active
Note: Row and Col are 0 based.
Contents | Index | Previous | Next