|
THPDFPage.Orientation
|
Ylös Edellinen Seuraava |
|
Determines document page orientation.
Delphi syntax:
type THPDFPageOrientation = ( poPortrait, poLandscape );
property Orientation: THPDFPageOrientation;
C++ syntax: enum THPDFPageOrientation { vpoPortrait, vpoLandscape };
__property THPDFPageOrientation Orientation;
Kuvaus Käytä ominaisuutta Orientation määrittämään, tulostetaanko tulostustyö vaaka- vai pystysuunnassa
THPDFPageOrientation on Orientation-ominaisuuden tyyppi. Nämä ovat mahdolliset arvot tyypille THPDFPageOrientation:
Value Meaning kielelle Delphi: poPortrait The page vertically orientation. poLandscape The page horizontally orientation.
kielelle C++Builder: vpoPortrait The page vertically orientation. vpoLandscape The page horizontally orientation.
|