TiLCDMatrix.ElementCharCode

TiLCDMatrix

Used to modify the character displayed in a particular column and row in the Matrix.

property ElementCharCode[Col, Row : Integer] : Integer;

Description

Use ElementCharCodeto to modify the specific character displayed in a particular column and row by specifying the character using an Integer value. Valid Values are 0-255, representing the standard and extended ASCII character set.

Note: you do not need to call PlaceText or set the Text property to use the ElementCharCode property.

Example

Delphi

iComponent.ElementChar[3, 0] := 65; //Forth Character, First Row, Character "A"

C++ Builder

iComponent->ElementChar[3, 0] = 65; //Forth Character, First Row, Character "A"

Note: Col and Row are zero based.

Contents | Index | Previous | Next