Range: ITabRange;
The Range property determines a cell or cell range where the data area is located.
Executing the example requires a form with the Button1 button, a regular report with the REPORT identifier, which contains a data area. Add links to the Metabase, Report, Ui system assemblies. The example is an event handler for the Button1 button.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
MB: IMetabase;
MObj: IMetabaseObject;
DI: IPrxDataIsland;
Begin
MB := MetabaseClass.Active;
MObj := MB.ItemById("REPORT").Bind;
DI := (MObj As IPrxReport).DataIslands.Item(0);
// Display a message of cell range address.
WinApplication.InformationBox(DI.Range.Address, self As IWin32Window);
End Sub Button1OnClick;
After executing the example clicking the button displays a message containing a cell range address of the first data area of the REPORT regular report.
See also: