Item(Index: Integer): IPrxTableIsland;
Index - index of a relational data area.
The Item property returns the relational data area of the regular report.
Sub Main;
Var
MB: IMetabase;
Report: IPrxReport;
TabIs : IPrxTableIslands;
Key : Integer;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("Report").Bind As IPrxReport;
TabIs := Report.TableIslands;
Key := TabIs.Item(0).Key;
Debug.WriteLine(Key.ToString);
End Sub Main;
After executing the example the console window displays the key of the relational data area. Report - identifier of the regular report, which sheet contains a relational data area.
See also: