|
THPDFPage.Orientation
|
Κορυφή Προηγούμενο Επόμενο |
|
Determines document page orientation.
Delphi syntax:
type THPDFPageOrientation = ( poPortrait, poLandscape );
property Orientation: THPDFPageOrientation;
C++ syntax: enum THPDFPageOrientation { vpoPortrait, vpoLandscape };
__property THPDFPageOrientation Orientation;
Περιγραφή Χρησιμοποιήστε το Orientation για να καθορίσετε αν ένα print job εκτυπώνει σε landscape ή portrait
Το THPDFPageOrientation είναι ο τύπος της ιδιότητας Orientation. Αυτές είναι οι πιθανές τιμές για 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.
|