Page 1 of 1

How to set a default Page size for a new Report or Page

Posted: Wed Apr 25, 2007 12:23 pm
by thetele
Is there a way to set the configuration of the Designer to always have a custom default
page size (Letter 8 1/2 X 11 in)?

Thanks.

How to set a default Page size for a new Report or Page

Posted: Wed Apr 25, 2007 2:21 pm
by Vital
You can use following static property (available only in latest prereliase builds 2007.2):

Code: Select all

StiOptions.Engine.DefaultPaperSize = PaperKind.Letter;
Thank you.

How to set a default Page size for a new Report or Page

Posted: Thu Apr 26, 2007 10:41 am
by thetele
Vital wrote:You can use following static property (available only in latest prereliase builds 2007.2):

Code: Select all

StiOptions.Engine.DefaultPaperSize = PaperKind.Letter;
Thank you.
Can we set this from the Configurator tool ?

How to set a default Page size for a new Report or Page

Posted: Thu Apr 26, 2007 2:36 pm
by Vital
No. This property available only from code.

Thank you.