IEaxSelectionPadContext.PopupLevelName

Fore Syntax

PopupLevelName(Index: Integer);

Fore.NET Syntax

PopupLevelName(Index: integer);

Parameters

Index. Index of hierarchy level.

Description

The PopupLevelName method determines hierarchy level by its index.

Comments

To collapse or expand hierarchy, use the IEaxSelectionPadContext.PopupCommand 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).PopupLevelName(1);
End Sub Button1OnClick;

On the side panel pass to the Selection tab group and selection dimension. On clicking the button, index corresponding to element key will be added to the name of each dimension 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).PopupLevelName(1);
End Sub;

See also:

IEaxSelectionPadContext