IBindingDimCombo.ModeElements

Syntax

ModeElements: Boolean;

Description

The ModeElements property determines the MODEELEMENTS parameter value in binding string.

Comments

The MODEELEMENTS parameter determines displaying of the Only by Elements selection mode.

On simultaneous use with the MODELEVELS parameter, the By Elements and Levels level will be displayed.

Example

Executing the example requires a calendar dictionary with the CALENDAR identifier.

Function CreateDimComboBidning(Dimension: IMetabaseObjectDescriptor): String;
Var
    BM: IBindingManager;
    DimComboBinding: IBindingDimCombo;
Begin
    BM := 
New BindingManager.Create;
    DimComboBinding := BM.CreateByUi("DimCombo"As IBindingDimCombo;
    DimComboBinding.Object := 
"CALENDAR";
    DimComboBinding.ModeElementsDefined := 
True;
    DimComboBinding.ModeElements := 
True;
    Return DimComboBinding.AsString;
End Function CreateDimComboBidning;

The function generates a binding string to use the value editor as a drop-down list of the dictionary. The editor will be displayed in the Only by Elements selection mode.

See also:

IBindingDimCombo