TiPercentBar.ItemValue
TiPercentBar
Used to set the value of a specific item.
property ItemValue[Index : Integer] : Double;
Description
Use the ItemValue property to get or set the value of a specific item.
Example
Delphi
iComponent.ItemValue[1] := 50; //Sets 2nd item value to 50
C++ Builder
iComponent->ItemValue[1] = 50; //Sets 2nd item value to 50
Note: The index value is 0 based.
Contents | Index | Previous | Next