IErAnalyzerTitle.BorderStyle

Syntax

BorderStyle: ControlBorderStyle;

Description

The BorderStyle property defines style for border of express report header panel.

Comments

The ControlBorderStyle.Single value is used by default, borders have 3D form.

Example

Executing the example requires a form, a button named Button1 on the form, the ErAnalyzerTitle component named ErAnalyzerTitle1 and the UiErAnalyzer component named UiErAnalyzer1. An express report should be defined in UiErAnalyzer1.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Begin
    ErAnalyzerTitle1.Object := UiErAnalyzer1;
    ErAnalyzerTitle1.BorderStyle := ControlBorderStyle.Flat;
End Sub Button1OnClick;

Clicking the button defines sets express report as a data source for the ErAnalyzerTitle1 component. Borders of express report header panel are displayed as a one pixel wide frame.

See also:

IErAnalyzerTitle