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

Report: IPrxReport;

SheetT : IPrxTable;

Begin

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:

IPrxTable