You are not logged in.
Pages: 1
Hello,
is it possible to switch between orientation on the current TGDIPages?
with TGDIPages.Create(self) do
try
OnStartPageHeader := MyReportHeader;
// the title of the report
Caption := 'Zuchtkalender';
// now we add some content to the report
BeginDoc;
// header and footer
TextAlign := taCenter;
Font.Style := [fsBold];
.....
DrawText('Kurzbemerkungen: ');
DrawText(dmzucht.ZQzuchtkalBEZEICHNUNG.AsString);
...
newpage(true);
switch orientaion to landscape <------
DrawBmp(image2.picture.bitmap,0,RightMarginPos);
Thanks
Josef
Offline
You may have used the "Search" button above.
See http://synopse.info/forum/viewtopic.php?id=228
Short answer is: it's not possible directly with the current implementation.
Orientation is global for the whole report.
SynPDF itself does not have this limitation.
Offline
Hello,
thanks for answer.
I have rotated my picture. This result is ok for me.
I need it only for a picture at the last site.
Josef
Offline
Pages: 1