TiLCDMatrix.ElementColor
TiLCDMatrix
Used to modify the color of the ON Cells or "dost" of a specific character
element in the Matrix.
property ElementColor[Col, Row : Integer] : TColor;
Description
Use ElementColor to modify the color of a particular character in the Matrix.
Note: you do not need to call PlaceText or set the Text property to use the
ElementColor property. However, if the character is blank, you will not be able to
see any active cells or "dots" anyway.
Example
Delphi
iComponent.ElementColor[3, 0] := clRed; //Forth Character, First Row
C++ Builder
iComponent->ElementColor[3, 0] = clRed; //Forth Character, First Row
Note: Col and Row are zero based.
Contents | Index | Previous | Next