Hello,
we need to limit the number of pages per report a user can create in the designer. Furthermore we'd like to control the naming of newly created pages.
Is this possible? What would be the best way? (Event BeforePageCreation? Properties Min/MaxPages? CustomComponent?)
Thanks in advance!
Reinhold
Control Page Creation/Removal/Name in Designer
Control Page Creation/Removal/Name in Designer
Hello,
Unfortunately, it is impossible to limit the number of pages in the designer. It is only possible to limit the number of rendered pages.
Thank you.
Unfortunately, it is impossible to limit the number of pages in the designer. It is only possible to limit the number of rendered pages.
Thank you.
Control Page Creation/Removal/Name in Designer
Is it possible to disable all page-functions (add, duplicate, remove, page setup) and insert a custom dialog to the toolbar/menu (like "PagesManager") which adds, removes and renames pages?
Thank you!
Thank you!
Control Page Creation/Removal/Name in Designer
Hello,
Something like this:
Thank you.
Something like this:
Code: Select all
Stimulsoft.Report.Design.Toolbars.StiStandardToolbarService service = Stimulsoft.Report.Design.Toolbars.StiStandardToolbarService.GetService();
service.ShowPageNew = false;
service.ShowPageDelete = false;
service.ShowPageSetup = false;
service.ShowFormNew = false;
service.AddToolButton("test", delegate{MessageBox.Show("Test");});