|
THPDFPage.Orientation
|
Vrh Prethodno Sledeće |
|
Determines document page orientation.
Delphi syntax:
type THPDFPageOrientation = ( poPortrait, poLandscape );
property Orientation: THPDFPageOrientation;
C++ syntax: enum THPDFPageOrientation { vpoPortrait, vpoLandscape };
__property THPDFPageOrientation Orientation;
Opis Koristite Orientation da biste odredili da li se zadatak štampe ispisuje u pejzažnom ili portretnom režimu
THPDFPageOrientation je tip Orientation svojstva. Ovo su moguće vrednosti 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.
|