You are not logged in.
Hello. Can you please tell me how to make one sheet in portrait orientation and the other in landscape (all in one document)? (using TGDIPages)
Last edited by Sargon (2019-05-10 18:02:18)
Offline
did you try to change orientation just before "Newpage" ?
something like:
with TGDIPages.Create(self) do
try
Orientation := poLandscape;
BeginDoc;
...
Orientation := poPortrait;
newPage;
...
Orientation := poLandscape;
newPage;
...
endDoc;
..
finally
free;
end;
Last edited by EvaF (2019-05-11 07:00:22)
Offline
Yes, right, thanks so much for the tip. Exactly what I need!
Offline