TiPlotLayoutObject.Width

TiPlotLayoutObject

Gets the width of the layout object.

procedure Width : Integer;

Description

Use Width to get the width of the layout object. The Width property value is in pixels,

Example

Delphi

Value := iComponent.XAxis[0].Width;

Value := iComponent.YAxis[0].Width;

Value := iComponent.DataView[0].Width;

Value := iComponent.ToolBar[0].Width;

Value := iComponent.Legend[0].Width;

Value := iComponent.Labels[0].Width;

C++ Builder

Value = iComponent->XAxis[0]->Width;

Value = iComponent->YAxis[0]->Width;

Value = iComponent->DataView[0]->Width;

Value = iComponent->ToolBar[0]->Width;

Value = iComponent->Legend[0]->Width;

Value = iComponent->Labels[0]->Width;

Note: this property is read only.

Contents | Index | Previous | Next