Report > Report Assembly Interfaces > IPrxTableIsland > IPrxTableIsland.Report
Report : IPrxReport;
The Report property returns the regular report, to which the relational data area belongs.
Sub UserProc;
Var
MB: IMetabase;
MObj: IMetabaseObject;
Report: IPrxReport;
TabIs: IPrxTableIslands;
TI: IPrxTableIsland;
Key: Integer;
Begin
MB := MetabaseClass.Active;
MObj := MB.ItemById("REPORT").Edit;
Report := MObj As IPrxReport;
TabIs := Report.TableIslands;
TI := TabIs.Item(0);
Key := TI.Report.Key;
Debug.WriteLine(Key.ToString);
End Sub UserProc;
After executing the example the console displays the key of the regular report. Report - identifier of a regular report.
See also: