Style: IPrxCellStyle;
The Style property determines the style of the corner cell of the data area of the regular report.
Sub Main;
Var
MB: IMetabase;
Report: IPrxReport;
DIs: IPrxDataIslands;
DI: IPrxDataIsland;
Prop: IPrxDataIslandProperties;
Corner: IPrxDataIslandCorner;
Style: IPrxCellStyle;
i: Integer;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("Report").Bind As IPrxReport;
DIs := Report.DataIslands;
DI := DIs.Item(0);
Prop := DI.Properties;
Corner := Prop.Corner;
Style := Corner.Style;
i := Style.Font.Size;
End Sub Main;
After executing the example the "i" variable contains font size selected for the corner cell of the table of the first data area of the regular report. The identifier of the regular report - Report.
See also: