|
THPDFPage.Orientation
|
Hore Predchádzajúce Ďalej |
|
Determines document page orientation.
Delphi syntax:
type THPDFPageOrientation = ( poPortrait, poLandscape );
property Orientation: THPDFPageOrientation;
C++ syntax: enum THPDFPageOrientation { vpoPortrait, vpoLandscape };
__property THPDFPageOrientation Orientation;
Opis Použite Orientation na určenie, či sa tlačová úloha tlačí na šírku alebo na výšku
THPDFPageOrientation je typ vlastnosti Orientation. Toto sú možné hodnoty 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.
|