TiPlotLayoutObject.Horizontal

TiPlotLayoutObject See Also

Used to indicate whether the layout object is horizontal or not.

procedure Horizontal : Boolean;

Description

Use the Horizontal property to get the horizontal status of the layout object. To make horizontal, set this property to true. To make vertical, set this property to false. This property is automatically controlled by the layout manager and should not be modified by the developer.

Example

Delphi

iComponent.XAxis[0].Horizontal := True;

C++ Builder

iComponent->XAxis[0]->Horizontal = True;

Contents | Index | Previous | Next