Show contents 

Express > Express Assembly Interfaces > IErAnalyzerDimPanel > IErAnalyzerDimPanel.Orientation

IErAnalyzerDimPanel.Orientation

Syntax

Orientation: EaxDimPanelOrientation;

Description

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

Example

Executing the example requires a from, a button named Button1 on the form, the TabSheetBox component named TabSheetBox1 and the ErAnalyzerDimPanel component named ErAnalyzerDimPanel1 used to control express report data, as well as the UiErAnalyzer component named UiErAnalyzer1 that is 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