|
THPDFPage.Orientation
|
Topo Anterior Seguinte |
|
Determines document page orientation.
Delphi syntax:
type THPDFPageOrientation = ( poPortrait, poLandscape );
property Orientation: THPDFPageOrientation;
C++ syntax: enum THPDFPageOrientation { vpoPortrait, vpoLandscape };
__property THPDFPageOrientation Orientation;
Descrição Defina o padrão de traço para linhas contínuas, sem interrupções
THPDFPageOrientation é o tipo da propriedade Orientation. Estes são os valores possíveis para 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.
|