Orientation
Orientation
Seitenformat Ausrichtung
Details
- Typ:
int - Siehe: Liste , Objekte ,
PrtPropGet (),PrtPropSet ()
Diese Eigenschaft bestimmt die Seitenausrichtung.
_PrtOrientPortrait: Hochformat_PrtOrientLandscape: Querformat
Die Eigenschaft kann beim PpcObject nur ausgelesen werden.
Beispiel:
tJob # PrtJobOpen(_PrtDocDinA4, '', _PrtJobOpenWrite | _PrtJobOpenTemp);
if (tJob > 0)
{
// PrintDocument ermitteln
tDoc # tJob->PrtInfo(_PrtDoc);
if (tDoc > 0)
// Querformat
tDoc->ppOrientation # _PrtOrientLandscape;
}