IEaxTableStyle.FixedCornerStyle

Syntax

FixedCornerStyle: ITabCellStyle;

Description

The FixedCornerStyle property determines style of the corner table cell.

Example

Sub Main;

Var

MB: IMetabase;

MObj: IMetabaseObject;

Expr: IEaxAnalyzer;

Grid: IEaxGrid;

Style: IEaxTableStyle;

FCS: ITabCellStyle;

Begin

MB:=MetabaseClass.Active;

MObj:=MB.ItemById("EXPRESS_REPORT").Edit;

Expr:=MObj As IEaxAnalyzer;

Grid:=Expr.Grid;

Style:=Grid.Style;

FCS:=Style.FixedCornerStyle;

FCS.BackgroundColor:=GxColor.FromName("Yellow");

MObj.Save;

End Sub Main;

 

After executing the example yellow background is set for the corner cell of the table. Express report identifier - EXPRESS_REPORT.

See also:

IEaxTableStyle