ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Design.Win Assembly / GrapeCity.ActiveReports.Design Namespace / Designer Class / PageReportDesignerActions Property
Example

PageReportDesignerActions Property
Gets or sets a value representing the allowed actions in PageReport Designer.
Syntax
'Declaration
 
Public Property PageReportDesignerActions As PageReportDesignerActions
 

Property Value

The page report designer actions as defined by the PageReportDesignerActions enumeration. The default value is PageReportDesignerActions.All.
Remarks
This property controls the actions that are permitted within the PageReport Designer. It allows for granular control over the functionality available to the user, such as editing, deleting, or adding new pages to the report. By adjusting the allowed actions, the designer can be customized to fit specific user roles or workflows, enhancing security and usability.
Example
You can disable certain actions for pages in page reports.
// Disable the action to add a new page.
designer.PageReportDesignerActions = PageReportDesignerActions.All ^ PageReportDesignerActions.AddPage
See Also