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
How to set a default Page size for a new Report or Page
You can use following static property (available only in latest prereliase builds 2007.2):
Thank you.
Code: Select all
StiOptions.Engine.DefaultPaperSize = PaperKind.Letter;
How to set a default Page size for a new Report or Page
Can we set this from the Configurator tool ?Vital wrote:You can use following static property (available only in latest prereliase builds 2007.2):
Thank you.Code: Select all
StiOptions.Engine.DefaultPaperSize = PaperKind.Letter;
How to set a default Page size for a new Report or Page
No. This property available only from code.
Thank you.
Thank you.