TiGaugeComponent.GetPointersSize

TiGaugeComponent See Also

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

function GetPointersSize (Index: Integer): Integer;

Description

Use GetPointersSize to get 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

Value := iComponent.GetPointersSize(1); //Gets the second pointer's size

C++ Builder

Value = iComponent->GetPointersSize(1); //Gets the second pointer's size

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

Contents | Index | Previous | Next