IEaxAnalyzerCalendarOptions.ShowPeriod

Syntax

ShowPeriod (CalendarDimKey: Integer): Boolean;

Parameters

CalendarDimKey. Key of the calendar dimension, period of which is configured.

Description

The ShowPeriod property determines whether calendar period should be displayed.

Comments

An express report may contain several calendars; period display settings are defined individually for each calendar.

Settings can be defined only for calendars contained in shared dimensions. Periods cannot be set up for calendars contained in private dimensions.

Example

Executing the example requires a form with the button with the Button1 identifier, the TabSheetBox component with the TabSheetBox1 identifier, the component ErAnalyzerDimPanel with the ErAnalyzerDimPanel1 identifier and the UiErAnalyzer component with the UiErAnalyzer1 identifier which is a data source for both components.

Add links to the Express, Metabase system assemblies.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
    CalendarOptions: IEaxAnalyzerCalendarOptions;
Begin
    CalendarOptions := UiErAnalyzer1.ErAnalyzer.Options.CalendarOptions;
    CalendarOptions.ShowPeriod(41950) := True;
End Sub Button1OnClick;

After executing the example clicking the Button1 shows periods for calendar with the specified key.

See also:

IEaxAnalyzerCalendarOptions