Report > Report Assembly Interfaces > IPrxTable > IPrxTable.TabSheet
TabSheet: ITabSheet;
The TabSheet property enables the user to get table of a report sheet.
The following example assumes that there is the Report object with the IPrxReport type.
Sub UserProc;
Var
MB: IMetabase;
Report: IPrxReport;
SheetT: IPrxTable;
Begin
MB := MetabaseClass.Active;
Report := MB.ItemById("REPORT").Bind As IPrxReport;
SheetT := Report.Sheets.Item(0) As IPrxTable;
SheetT.TabSheet.CellValue(0, 0) := Report.DataSources.Count;
End Sub UserProc;
After executing the example the system displays the number of data sources of the regular report.
See also: