IErAnalyzerDimPanel.Orientation

Syntax

Orientation: EaxDimPanelOrientation;

Description

The Orientation property determines the layout of dimensions in the dimension panel.

Example

Executing the example requires a form, a button with the Button1 identifier on the form, the TabSheetBox component with the TabSheetBox1 identifier and the ErAnalyzerDimPanel component with the ErAnalyzerDimPanel1 identifier used to control express report data, as well as the UiErAnalyzer component with the UiErAnalyzer1 identifier used as a data source.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Begin

TabSheetBox1.Source := UiErAnalyzer1 As ITabSheetSource;

ErAnalyzerDimPanel1.Object := UiErAnalyzer1;

UiErAnalyzer1.Active := True;

ErAnalyzerDimPanel1.Orientation := EaxDimPanelOrientation.Vertical;

End Sub Button1OnClick;

After executing the example dimensions of the dimension panel are arranged vertically:

See also:

IErAnalyzerDimPanel