Is there possibility to read from TPrintDialog
orientation of page (horizontal/vertical) chosen by the user?
In classical solution:
if PrintDialog1.Execute() then
begin
Printer.Orientation := poLandscape //I want read this parameter from PrintDialog
Printer.BeginDoc;
...
Printer.EndDoc;
end;
I can not find the orientation in TPrintDialog
.