IEaxSelectionPadContext.PopupCommand

Syntax

PopupCommand(CommandType: EaxPopupCommandType);

Parameters

CommandType. Action on collapsed hierarchy.

Description

The PopupCommand method executes action on collapsed hierarchy.

Comments

To sort hierarchy elements, use the IEaxSelectionPadContext.PopupSort method.

Example

Executing the example requires a form containing the EaxConfigurationPanel component with the EaxConfigurationPanel1 identifier, the UiErAnalyzer component with the UiErAnalyzer1 identifier and the Button component with the Button1 identifier. Determine the UiErAnalyzer1 component as data source for the EaxConfigurationPanel1 component. Use express report as data source for the UiErAnalyzer1 component.

The example is a handler of the OnClick event for the Button1 component.

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

On the side panel pass to the Selection tab group and selection dimension. On clicking the button, all dimension levels will be expanded.

See also:

IEaxSelectionPadContext