IEaxSelectionPadContext.HierarchyNewElement

Fore Syntax

HierarchyNewElement;

Fore.NET Syntax

HierarchyNewElement();

Description

The HierarchyNewElement method adds new element to the hierarchy.

Comments

To rename element, use the IEaxSelectionPadContext.HierarchyRenameElement method.

Fore Example

Executing the example requires a form with the button named Button1 on it, the EaxConfigurationPanel component named EaxConfigurationPanel1 and the UiErAnalyzer component which is installed as data source for EaxConfigurationPanel1. UiErAnalyzer is connected to an express report from repository.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    sps: ISystemPadContext;
Begin
    sps := EaxConfigurationPanel1.GetActiveContext;
    (sps As IEaxSelectionPadContext).HierarchyNewElement;
End Sub Button1OnClick;

After starting the form, on the side panel pass to the Selection tab group and select a dimension. On clicking the button theexpression editor opens to determine a formula used to calculate values by a new element.

Fore.NET Example

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.Express;

Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Var
    sps: ISystemPadContext;
Begin
    sps := eaxConfigurationPanelNet1.CtrlBox.GetActiveContext();
    (sps As IEaxSelectionPadContext).HierarchyNewElement();
End Sub;

See also:

IEaxSelectionPadContext