TiSevenSegmentCharacter.SegmentBits
TiSevenSegmentCharacter See Also
Used to set SegAOn - SegGOn properties all at the same time.
property SegmentBits : Byte;
Description
Use SegmentBits to set SegAOn - SegGOn properties all at the same time. The
least significant bit sets the SegAOn property and the most significant bit sets
the SegGOn property.
Bit 0 = SegAOn
Bit 1 = SegBOn
Bit 2 = SegCOn
Bit 3 = SegDOn
Bit 4 = SegEOn
Bit 5 = SegFOn
Bit 6 = SegGOn
Example
Delphi
iComponent.SegmentBits := 6; //Sets SegBOn and SegCOn to Active (TRUE)
C++ Builder
iComponent->SegmentBits = 6; //Sets SegBOn and SegCOn to Active (TRUE)
Note: The UseSegmentBits property must be TRUE for this property to have a visual effect.
Contents | Index | Previous | Next