TiStripChart.PrinterOrientation

TiStripChart See Also

Specifies the orientation of the chart on the printed page.

type TPrinterOrientation = (poPortrait = 0, poLandscape = 1);

property PrinterOrientation : TPrinterOrientation;

Description

Use PrinterOrientation to set the orientation of the chart on the printed page.

Value
Meaning
poPortrait
Portrait
poLandscape
Landscape

Example

Delphi

iComponent.PrinterOrientation := poLandscape;

C++ Builder

iComponent->PrinterOrientation = poLandscape;

Contents | Index | Previous | Next