BorderStyle: ControlBorderStyle;
The BorderStyle property defines style for border of express report header panel.
Default value is ControlBorderStyle.Single, that is, borders are displayed in 3D mode.
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 this button defines express report as the data source for the ErAnalyzerTitle1 component. Borders of express report header panel are displayed as a one pixel wide frame.
See also: