Show contents 

Report > Report Assembly Interfaces > IPrxTable > IPrxTable.TabSheet

IPrxTable.TabSheet

Syntax

TabSheet: ITabSheet;

Description

The TabSheet property enables the user to get table of a report sheet.

Example

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(0As IPrxTable;
    SheetT.TabSheet.CellValue(00) := Report.DataSources.Count;
End Sub UserProc;

After executing the example the system displays the number of data sources of the regular report.

See also:

IPrxTable