Rows(Index: Integer): IPrxTableIslandLayoutRow;
Index - index of a layout row.
The Rows property determines parameters of a layout row.
Sub Main;
Var
MB: IMetabase;
MObj : IMetabaseObject;
Report : IPrxReport;
TabIs : IPrxTableIslands;
TI : IPrxTableIsland;
Layout : IPrxTableIslandLayout;
Row : IPrxTableIslandLayoutRow;
Cell : IPrxTableIslandLayoutCell;
SourceFields : IDalCursorFields;
Begin
MB := MetabaseClass.Active;
MObj := MB.ItemById("Report").Edit;
Report := MObj As IPrxReport;
TabIs := Report.TableIslands;
TI := TabIs.Item(0);
TI := TI.Edit;
Layout := TI.Layout;
Row := Layout.Rows(0);
SourceFields := Report.TableSources.Item(0).Execute.Fields;
Cell := Row.Cells(0);
Cell.Field.FieldName := SourceFields.Item(0).Name;
Cell.Style.BackgroundColor := New GxColor.CreateRGB(250,0,0);
TI.Save;
MObj.Save;
End Sub Main;
After executing the example binding of the cell to the data source is changed and cell background color is specified. Report - identifier of a regular report.
See also: