Page 1 of 1
Page orientation
Posted: Mon Jan 03, 2011 11:31 am
by jorool
How do I change page orientation on source code in flex?
I've tried the following code without success:
Code: Select all
var page:StiPage = reportButtons.report.pages[0];
page.Orientation = StiOrientation.Horizontal;
Thank you.
Page orientation
Posted: Tue Jan 04, 2011 3:53 am
by Vladimir
Hello,
Please use the following code:
Code: Select all
var page: StiPage = report.pages[0] as StiPage;
page.orientation = StiPageOrientation.Landscape;
Thank you.
Page orientation
Posted: Tue Jan 04, 2011 5:57 am
by jorool
Hello, Vladimir!
I've tried this code too! But I could not auto import StiPage and StiPageOrientation packages.
I had to dig through the packages trying to find the correct path because its packages are not visible to me!
I've dowsnloades the version yesterday!
Thank you.
Page orientation
Posted: Tue Jan 04, 2011 9:19 am
by Vladimir
Hello,
We have included the visibility of all major classes in the new version 2011.1.905 from January 4, it will be available today within a few hours.
Thank you.