TiSwitchMultiPosition.PositionLabel

TiSwitchMultiPosition See Also

References the strings in the list by their positions.

property PositionLabel [Index: Integer] : String;

Description

Use PositionLabel property to get or set the string at a particular position. You can not use PositionLabel to add or remove labels, use PositionLabels.

Example

Delphi

iComponent.PositionLabel[1] := 'On'; //Sets 2nd label to "On"

C++ Builder

iComponent->PositionLabel[1] = "On"; //Sets 2nd label to "On"

Contents | Index | Previous | Next