IDimSelection.SelectAll

Syntax

SelectAll;

Description

The SelectAll method adds all dictionary elements to selection.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Dimen: IDimInstance;
    Selection: IDimSelection;
Begin
    MB:=MetabaseClass.Active;
    Dimen:=MB.ItemById("D_TO").Open(NullAs IDimInstance;
    Selection:=Dimen.CreateSelection;
    Selection.SelectAll;
End Sub UserProc;

After executing the example all the dictionary elements are added to the Selection selection.

See also:

IDimSelection