IPrxTableIslandLayout.Island

Syntax

Island : IPrxTableIsland;

Description

The Island property returns the relational data area, to which the layout row belongs.

Example

Sub Main;
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 Main;

After executing the example the console window displays name of the relational data area.

See also:

IPrxTableIslandLayout