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