Page 1 of 1

Setting Initial Zoom Level in Designer

Posted: Tue Dec 30, 2008 7:42 pm
by johnham
Is there a way to set the initial zoom level of a report when loading in the designer. The default seems to be tiny.


Setting Initial Zoom Level in Designer

Posted: Fri Jan 02, 2009 5:50 am
by Vital
Hello John,

You can use following code:

Code: Select all

StiSettings.Load();
StiSettings.Set("StiDesigner", "Zoom", 2d);
StiSettings.Save();
Thank you.