IBindingDimCombo.Period

Syntax

Period: Boolean;

Description

The Period property determines value of the PERIOD parameter in binding string.

Comments

The PERIOD parameter determines the Range menu display to set up period limits in the Only by Levels selection mode.

Example

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

Function CreateDimComboBinding: String;
Var
    BM: IBindingManager;
    DimComboBinding: IBindingDimCombo;
Begin
    BM := New BindingManager.Create;
    DimComboBinding := BM.CreateByUi("DimCombo"As IBindingDimCombo;
    DimComboBinding.Object := "CALENDAR";
    DimComboBinding.PeriodDefined := True;
    DimComboBinding.Period := True;
    Return DimComboBinding.AsString;
End Function CreateDimComboBinding;

The function generates a binding string to use value editor as a dictionary drop-down list. The editor will display the Range menu to set period limits in the Only by Levels selection mode.

See also:

IBindingDimCombo