|
THPDFPage.Orientation
|
Nahoru Předchozí Další |
|
Determines document page orientation.
Syntaxe Delphi:
type THPDFPageOrientation = ( poPortrait, poLandscape );
property Orientation: THPDFPageOrientation;
Syntaxe C++: enum THPDFPageOrientation { vpoPortrait, vpoLandscape };
__property THPDFPageOrientation Orientation;
Popis Použijte Orientation k určení, zda se tisková úloha tiskne na šířku nebo na výšku
THPDFPageOrientation je typ vlastnosti Orientation. Toto jsou možné hodnoty pro THPDFPageOrientation:
Value Meaning for Delphi : poPortrait The page vertically orientation. poLandscape The page horizontally orientation.
for C++Builder : vpoPortrait The page vertically orientation. vpoLandscape The page horizontally orientation.
|