Show contents 

Express > Express Assembly Interfaces > IEaxAnalyzerCalendarOptions > IEaxAnalyzerCalendarOptions.ShowPeriod

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 determined 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 a button named Button1 on the form, the TabSheetBox component named TabSheetBox1, the ErAnalyzerDimPanel component named ErAnalyzerDimPanel1, and the UiErAnalyzer component with named UiErAnalyzer1 that 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