ITabSheetSource.GetTabSheet

Syntax

GetTabSheet: ITabSheet;

Description

The GetTabSheet method returns the table, for which the data source is used.

Example

Sub UserProc;
Var
    Tab: ITabSheet;
Begin
    Tab:=(UiTabSheet1 As ITabSheetSource).GetTabSheet;
    Tab.Clear;
End Sub UserProc;

After executing the example the table, which data source is UiTabSheet1, will be cleared.

See also:

ITabSheetSource