TiPlotComponent.Limit

TiPlotComponent

Used to access a specific limit object.

property
Limit[Index : Integer] : TiPlotLimit;

Description

Use Limit to access a specific limit object. The index value is zero based and must be less than the LimitCount. To add a limit, use the AddLimit method. To delete a limit, use the DeleteLimit method. To remove all limits, use the RemoveAllLimits method.

Example

Delphi

iComponent.Limit[0].Line1Position := 10.5;

C++ Builder

iComponent->Limit[0]->Line1Position = 10.5;

Note: Index is zero based.

Contents | Index | Previous | Next