ITabView.DisplayFixedAreaLines

Syntax

DisplayFixedAreaLines: Boolean;

Description

The DisplayFixedAreaLines property allows to change visibility of fixed area lines.

Comments

By default the property is set to True.

The FixedAreaLinesColor property determines the color of the line.

Example

There must be a form with a button named Button1 on it, the TabSheetBox component, and the UiTabSheet component named UiTabSheet1 that is used as a data source for the TabSheetBox component. Executing the example requires to add a link to the Drawing system assembly and the Button1OnClick event handler.

    Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
    
Begin
        UiTabSheet1.TabSheet.View.FixedRowsCount := 
2;
        UiTabSheet1.TabSheet.View.DisplayFixedAreaLines := 
True;
        UiTabSheet1.TabSheet.View.FixedAreaLinesColor := GxColor.FromName(
"Red");
    
End Sub Button1OnClick;

After executing the example a fixed area (first 2 table rows) is created, the lines of the fixed area will be shown in red.

See also:

ITabView