ITabView.DisplayDarkFixedBorder

Fore Syntax

DisplayDarkFixedBorder: Boolean;

Fore.NET Syntax

DisplayDarkFixedBorder: boolean;

Description

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

Comments

Available values:

Fore 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.

Fore.NET Example

The requirements and result of the Fore.NET Example execution match with those in the Fore Example. Use Fore.NET analogs instead of Fore components.

Imports Prognoz.Platform.Interop.Express;
Imports Prognoz.Platform.Interop.Tab;

Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Var
    Eax: IEaxAnalyzer;
    Tab: ITabSheet;
    TView: ITabView;
Begin
    Eax := UiErAnalyzerNet1.ErAnalyzer.ErAnalyzer;
    Tab := Eax.Grid.TabSheet;
    TView := Tab.View;
    TView.DisplayDarkFixedBorder := False;
End Sub;

See also:

ITabView