Hi,
Is there a property/method i can call to set the zoom factor in the designer during load?
I'd like to always have the zoom set to 'Page Width' when the designer opens.
I can't seem to find anything appropriate.
Thanks,
Nigel
Set the zoom value in the designer
-
- Posts: 4
- Joined: Mon Oct 29, 2007 8:58 am
Set the zoom value in the designer
You can use the "Zoom" property. For example:
Thank you.
Code: Select all
report.Info.Zoom = 1;
-
- Posts: 4
- Joined: Mon Oct 29, 2007 8:58 am
Set the zoom value in the designer
Pavel,
Thanks, but this doesn't seem to work in the designer.
The code is as follows:
What I would like to do is set the zoom property to 'Page Width'
Thanks
Nigel
Thanks, but this doesn't seem to work in the designer.
The code is as follows:
Code: Select all
report.Load(reportFile);
report.Info.Zoom = 1.0;
report.Design();
Thanks
Nigel
Set the zoom value in the designer
Sorry, but at this moment this is not possible.
Thank you.
Thank you.