THPDFPage.Orientation

THPDFPage

 

トップへ  前へ  次へ

ドキュメントのページの向きを決定します。

 

Delphi 構文:

 

type

THPDFPageOrientation = ( poPortrait, poLandscape );

 

property Orientation: THPDFPageOrientation;

 

C++ 構文:

enum THPDFPageOrientation { vpoPortrait, vpoLandscape };

 

__property THPDFPageOrientation Orientation;

 

説明

印刷ジョブを横向き(landscape)と縦向き(portrait)のどちらで印刷するかを決定するには、Orientation を使用します。

 

THPDFPageOrientation は Orientation プロパティの型です。THPDFPageOrientation の可能な値は次のとおりです:

 

Value        Meaning


Delphi の場合:

poPortrait        The page vertically orientation.

poLandscape        The page horizontally orientation.

 

C++Builder の場合:

vpoPortrait        The page vertically orientation.

vpoLandscape        The page horizontally orientation.