TiGaugeComponent.SetPointersSize

TiGaugeComponent See Also

Used to get the size of a specific pointer at runtime.

function SetPointersSize (Index: Integer, Value: Integer);

Description

Use SetPointersSize to set the size of the pointer specified by Index.

For backward compatibility, the PointerSize property of the gauge component will modify the size of Pointer index 0.

Example

Delphi

iComponent.SetPointersSize(1, 5); //Sets the second pointer's size

C++ Builder

iComponent->SetPointersSize(1, 5); //Sets the second pointer's size

Note: Index is 0 based. Pointer with Index 0 can never be deleted.

Contents | Index | Previous | Next