[]
Gets or sets a value representing the allowed actions in PageReport Designer.
public PageReportDesignerActions PageReportDesignerActions { get; set; }
Type | Description |
---|---|
PageReportDesignerActions | The page report designer actions as defined by the PageReportDesignerActions enumeration. The default value is All. |
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.
You can disable certain actions for pages in page reports.
// Disable the action to add a new page.
designer.PageReportDesignerActions = PageReportDesignerActions.All ^ PageReportDesignerActions.AddPage