DisplayDarkFixedBorder: Boolean;
The DisplayDarkFixedBorder property determines whether the shadow of the fixed area is displayed.
Available values:
True. Default value. Shadow of the fixed area is displayed.
False. Shadow of the fixed area is not displayed.
Executing the example requires a form containing the Button component named Button1, the UiErAnalyzer component named UiErAnalyzer1 and the TabSheetBox component named TabSheetBox1. Set UiErAnalyzer1 as a data source for TabSheetBox1. An express report containing a table with data should be specified as the source for UiErAnalyzer1.
The procedure is the OnClick event handler for the Button1 button.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
Eax: IEaxAnalyzer;
Tab: ITabSheet;
TView: ITabView;
Begin
Eax := UiErAnalyzer1.ErAnalyzer;
Tab := Eax.Grid.TabSheet;
TView := Tab.View;
TView.DisplayDarkFixedBorder := False;
End Sub Button1OnClick;
Clicking the button does not display shadow of fixed area.
See also: