IEaxTableStyle.LeftHeaderStyle

Syntax

LeftHeaderStyle: ITabCellStyle;

Description

The LeftHeaderStyle property determines style of table row headers.

Example

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Expr: IEaxAnalyzer;
    Grid: IEaxGrid;
    Style: IEaxTableStyle;
    LHS: ITabCellStyle;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById("EXPRESS_REPORT").Edit;
    Expr := MObj As IEaxAnalyzer;
    Grid := Expr.Grid;
    Style := Grid.Style;
    LHS := Style.LeftHeaderStyle;
    LHS.BackgroundColor := GxColor.FromName("Red");
    MObj.Save;
End Sub UserProc;

After executing the example red background is set for the table row headers. Express report identifier - EXPRESS_REPORT.

See also:

IEaxTableStyle