TiPlotLayoutObject.Height
TiPlotLayoutObject
Gets the height of the layout object.
procedure Height : Integer;
Description
Use Height to get the height of the layout object. The Height property value
is in pixels,
Example
Delphi
Value := iComponent.XAxis[0].Height;
Value := iComponent.YAxis[0].Height;
Value := iComponent.DataView[0].Height;
Value := iComponent.ToolBar[0].Height;
Value := iComponent.Legend[0].Height;
Value := iComponent.Labels[0].Height;
C++ Builder
Value = iComponent->XAxis[0]->Height;
Value = iComponent->YAxis[0]->Height;
Value = iComponent->DataView[0]->Height;
Value = iComponent->ToolBar[0]->Height;
Value = iComponent->Legend[0]->Height;
Value = iComponent->Labels[0]->Height;
Note: this property is read only.
Contents | Index | Previous | Next