|
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, за да определите дали печатната задача печата в 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.
|