ICubeMetaExporter.CalendarLevelSet

Fore Syntax

CalendarLevelSet: DimCalendarLevelSet;

Fore.NET Syntax

CalendarLevelSet: Prognoz.Platform.Interop.Dimensions.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.

Fore and Fore.NET Examples

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

See also:

ICubeMetaExporter