ICubeMetaExporter.CalendarLevelSet

Syntax

CalendarLevelSet: DimCalendarLevelSet;

Description

The CalendarLevelSet property determines a set of calendar frequencies, which data must be exported.

Comments

Calendar frequencies must be enumerated with the use of the Or operator. For example:

Sub UserProc;
Var

    Exporter: ICubeMetaExporter;
Begin

    Exporter.CalendarLevelSet := DimCalendarLevelSet.Year Or DimCalendarLevelSet.Quarter;

End Sub UserProc;

Format of dates for each used frequency is set by means of the ICubeMetaExporterBinding.DateFormatEx property.

Example

The property use is given in the example for ICubeMetaExporter.AutoPeriod.

See also:

ICubeMetaExporter