IExportRequestParams.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 using the Or operator. For example:

Sub UserProc;
Var

    Params: IExportRequestParams;
Begin

    Params.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 ICubeMetaExporterBinding.DateFormatEx.

See also:

IExportRequestParams