ITabView.FixedBordersStyle

Syntax

FixedBordersStyle: ITabCellStyle;

Description

The FixedBorderStyleProperty returns style of the lines of a fixed region.

Example

Executing the example requires that the repository contains a regular report with the REGL_REP identifier.

Sub UserProc;
Var
    MB: IMetabase;
    Report: IPrxReport;
    SheetT: IPrxTable;
    Tab: ITabSheet;
    View: ITabView;
    pStyle: ITabCellStyle;
Begin
    MB := MetabaseClass.Active;
    Report := MB.ItemById("REP_TABSHEET").Edit As IPrxReport;
    SheetT := Report.Sheets.Item(0As IPrxTable;
    Tab := SheetT.TabSheet;
    View := Tab.View;
    View.FixedColumnsCount := 1;
    pStyle := View.FixedBordersStyle;
    pStyle.BorderStyle(TabBorder.EdgeTop) := TabBorderStyle.LineStyleNone;
    pStyle.BorderStyle(TabBorder.EdgeLeft) := TabBorderStyle.Dash;
    pStyle.BorderColor(TabBorder.EdgeLeft) := New GxColor.CreateRGB(25500);
    (Report As IMetabaseObject).Save;
End Sub UserProc;

After executing the example a new style is set for the fixed area line in the regular report.

See also:

ITabView