IDimSelection.MultiSelect

Syntax

MultiSelect: Boolean;

Description

The MultiSelect property determines whether multiple elements can be selected. True if possible.

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.MultiSelect:=False;
    Selection.SelectElement(11,False);
    Selection.SelectElement(12,False);
    Selection.SelectElement(13,False);
    Selection.SelectElement(14,False);
End Sub UserProc;

After executing the example the Selection selection contains only dictionary element 14.

See also:

IDimSelection