ITabView.DisplayDarkFixedBorder

Syntax

DisplayDarkFixedBorder: Boolean;

Description

The DisplayDarkFixedBorder property determines whether the shadow of the fixed area is displayed.

Comments

Available values:

Example

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:

ITabView