|
THPDFPage.Orientation
|
맨 위 이전 다음 |
|
Determines document page orientation.
Delphi 구문:
type THPDFPageOrientation = ( poPortrait, poLandscape );
property Orientation: THPDFPageOrientation;
C++ 구문: enum THPDFPageOrientation { vpoPortrait, vpoLandscape };
__property THPDFPageOrientation Orientation;
설명 Print job이 landscape 또는 portrait로 print되는지 결정하려면
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.
|