IExportRequestParams.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 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.

Fore and Fore.NET Examples

The property use is given in the example for ICubeMetaExporterBinding.DateFormatEx.

See also:

IExportRequestParams