SelectAll;
The SelectAll method adds all dictionary elements to selection.
Sub Main;
Var
MB: IMetabase;
Dimen: IDimInstance;
Selection: IDimSelection;
Begin
MB:=MetabaseClass.Active;
Dimen:=MB.ItemById("D_TO").Open(Null) As IDimInstance;
Selection:=Dimen.CreateSelection;
Selection.SelectAll;
End Sub Main;
After executing the example all the dictionary elements are added to the Selection selection.
See also: