IEaxSelectionPadContext.PopupLevelName

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.

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.

See also:

IEaxSelectionPadContext