Opens a dialog box that is used to set up named ranges.
Command parameters are passed in the Data property. To ensure command execution, determine one of the following values in this property:
Value type | Description |
ITabSheet | The page containing a cell range. |
Array | The array of the Variant type that contains the following components: Element 1: ITabSheet. The page containing a cell range. Element 2: ITabRange. The cell range, for which the dialog box that is used to set up named ranges, opens. |
The command can be used only for regular reports.
Executing the example requires a form, the Button1 button on the form, the ReportBox component and the UiReport component named UiReport1, which is used as a data source for the ReportBox component.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
Report: IPrxReport;
Target: IUiCommandTarget;
Context: IUiCommandExecutionContext;
Begin
Report := UiReport1.Instance As IPrxReport;
Target := WinApplication.Instance.GetPluginTarget("Report");
Context := Target.CreateExecutionContext;
Context.Data := (Report.ActiveSheet As IPrxTable).TabSheet;
Target.Execute("NamedRangesSetup", Context);
End Sub Button1OnClick;
Clicking the button opens the dialog box that is used to set up named ranges.
The requirements and result of the Fore.NET example execution match with those in the Fore example. Use Fore.NET analogs instead of Fore components.
Imports Prognoz.Platform.Interop.Report;
Imports Prognoz.Platform.Interop.Ui;
Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Var
Report: IPrxReport;
WinApp: WinApplication = New WinApplicationClass_2();
Target: IUiCommandTarget;
Context: IUiCommandExecutionContext;
Begin
Report := UiReportNet1.ReportUi.Report;
Target := WinApp.GetPluginTarget("Report");
Context := Target.CreateExecutionContext();
Context.Data := (Report.ActiveSheet As IPrxTable).TabSheet;
Target.Execute("NamedRangesSetup", Context, Null);
End Sub;
See also: