Hi !
Hab mal so ein bisschen rumexperimentiert. Hier das Ergebnis:
Code:
ExcelWorksheet1.PageSetup.Orientation:=xlHorizontal;
Damit kannst Du wohl festlegen, ob es Hoch oder Querformat ist.
Weitere Werte:
Code:
// XlOrientation constants
type
XlOrientation = TOleEnum;
const
xlDownward = $FFFFEFB6;
xlHorizontal = $FFFFEFE0;
xlUpward = $FFFFEFB5;
xlVertical = $FFFFEFBA;
Diese kannst Du in der Excel97.pas nachlesen. Bei mir befindet sich diese Datei unter .../Programme/Borland/Delphi5/Ocx/Servers/
Da findest Du auch alle anderen Office-Units !!!
Hoffe, es hilft !
Gruß, helld