|
THPDFPage.Orientation
|
Vrh Prethodno Sljedeće |
|
Određuje orijentaciju stranice dokumenta
Delphi syntax:
type THPDFPageOrientation = ( poPortrait, poLandscape );
property Orientation: THPDFPageOrientation;
C++ syntax: enum THPDFPageOrientation { vpoPortrait, vpoLandscape };
__property THPDFPageOrientation Orientation;
Opis Upotrijebite Orientation za određivanje ispisuje li se zadatak ispisa u pejzažnoj ili portretnoj orijentaciji
THPDFPageOrientation je tip svojstva Orientation. To su moguće vrijednosti za 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.
|