|
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.
|