Island : IPrxTableIsland;
The Island property returns the relational data area, to which the layout row belongs.
Sub UserProc;
Var
MB: IMetabase;
Report: IPrxReport;
TabIs: IPrxTableIslands;
TI: IPrxTableIsland;
Layout: IPrxTableIslandLayout;
Id: String;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("REPORT").Bind As IPrxReport;
TabIs := Report.TableIslands;
TI := TabIs.Item(0);
Layout := TI.Layout;
Id := Layout.Island.Id;
Debug.WriteLine(Id);
End Sub UserProc;
After executing the example the console window displays name of the relational data area.
See also: