ICalendarDimension.IncludeQuarters

Syntax

IncludeQuarters: Boolean;

Description

The IncludeQuarters property determines whether the Quarters level is included into calendar dictionary.

Example

Executing the example assumes that the repository contains a calendar dictionary with the CALENDAR_DIM identifier.

Sub Main;

Var

MB: IMetabase;

MObj: IMetabaseObject;

CalDim: ICalendarDimension;

Begin

MB:=MetabaseClass.Active;

MObj:=MB.ItemById("CALENDAR_DIM").Edit;

CalDim:=MObj As ICalendarDimension;

CalDim.IncludeQuarters:=True;

MObj.Save;

End Sub Main;

After executing the example the Quarters level is enabled in calendar dictionary.

See also:

ICalendarDimension