Executes a specified DesignerAction command.
Overload | Description |
ExecuteAction(DesignerAction) | Executes the specified DesignerAction command within the designer environment. |
ExecuteAction(DesignerAction,Object) | Executes the specified DesignerAction command with an optional parameter. This method can be utilized when implementing custom toolbars or menus within the designer environment. It enables the execution of report actions in response to user interactions with toolbar or menu items. |
private void mnuLoadLayout_Click(object sender, System.EventArgs e)
{
this.designer1.ExecuteAction(GrapeCity.ActiveReports.Design.DesignerAction.FileOpen);
}
private void mnuSaveLayout_Click(object sender, System.EventArgs e)
{
this.designer1.ExecuteAction(GrapeCity.ActiveReports.Design.DesignerAction.FileSave);
}
private void mnuPageSetup_Click(object sender, System.EventArgs e)
{
this.designer1.ExecuteAction(GrapeCity.ActiveReports.Design.DesignerAction.ReportSettings);
}
Private Sub mnuLoadLayout_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuLoadLayout.Click
Me.Designer1.ExecuteAction(DesignerAction.FileOpen)
End Sub
Private Sub mnuSaveLayout_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuSaveLayout.Click
Me.Designer1.ExecuteAction(DesignerAction.FileSave)
End Sub
Private Sub mnuPageSetup_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuPageSetup.Click
Me.Designer1.ExecuteAction(DesignerAction.ReportSettings)
End Sub