TiGaugeComponent.DeletePointer
TiGaugeComponent See Also
Deletes a single pointer of the gauge component.
procedure DeletePointer(Index : Integer);
Description
Call DeletePointer to delete a single pointer of the gauge component. The
index values for all pointers with a higher index value will decrement by one.
Pointer with index 0 can never be deleted for backward compatibility reasons.
Use RemoveAllPointers to remove all but the first pointer (Index 0).
Example
Delphi
iComponent.DeletePointer(1); //Deletes 2nd Pointer
C++ Builder
iComponent->DeletePointer(1); //Deletes 2nd Pointer
Note: Index is 0 based. Pointer with Index 0 can never be deleted.
Contents | Index | Previous | Next