Style: IPrxCellStyle;
The Style property determines relational data area formatting.
The following example assumes that there is the Report object with the IPrxReport type.
Sub User;
Var
Report : IPrxReport;
TabIs : IPrxTableIslands;
TI : IPrxTableIsland;
Layout : IPrxTableIslandLayout;
LayFormat : IPrxTableIslandFormat;
Style : IPrxCellStyle;
Begin
TabIs := Report.TableIslands;
TI := TabIs.Item(0);
TI := TI.Edit;
Layout := TI.Layout;
LayFormat := Layout.Format;
Style := LayFormat.Style;
Style.BackgroundColor := GxColor.FromName("Red");
Style.Font.Bold := TriState.OnOption;
Style.Font.Color := GxColor.FromName("Blue");
TI.Save;
End Sub User;
After executing the example formatting parameters are set up for the relational data area.
See also: