ITabTableStyles.Clear

Syntax

Clear;

Description

The Clear method clears the table styles collection.

Example

To execute the example a form, a button on this form named Button1, the component UiTabSheet named UiTabSheet1 and the component TabSheetBox are required.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Var

TSheet: ITabSheet;

TTStyles: ITabTableStyles;

Begin

TSheet := UiTabSheet1.TabSheet;

TTStyles := TSheet.TableStyles;

TTStyles.Clear;

End Sub Button1OnClick;

After executing the example the table styles collection will be cleared.

See also:

ITabTableStyles