IEaxCellStyle.Reset

Syntax

Reset;

Description

The Reset method resets style settings to default.

Example

Executing the example requires that the repository contains an express report with the EXPRESS_REPORT identifier.

Sub UserProc;
Var
    MB: IMetabase;
    Expr: IEaxAnalyzer;
    GStyle: IEaxTableStyle;
Begin
    MB := MetabaseClass.Active;
    Expr := MB.ItemById("EXPRESS_REPORT").Edit As IEaxAnalyzer;
    GStyle := Expr.Grid.Style;
    (GStyle.TotalsHeaderStyle As IEaxCellStyle).Reset;
    (Expr As IMetabaseObject).Save;
End Sub UserProc;

After executing the example parameters of totals headers style are set to default.

See also:

IEaxCellStyle