CalendarLevelSet: DimCalendarLevelSet;
The CalendarLevelSet property determines a set of calendar frequencies, which data must be exported.
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.
The property use is given in the example for ICubeMetaExporter.AutoPeriod.
See also: