Share via


deleteTFoot Method

Removes a TFOOT element from a TABLE element.

expression.deleteTFoot

*expression   * Required. An expression that returns one of the objects in the Applies To list.

Remarks

Use the createTFoot method to add a TFOOT element to a table.

Example

The following example removes the TFOOT element, if one exists, in the first table in the active document.

Dim objTable As FPHTMLTable

Set objTable = ActiveDocument.all.tags("table").Item(0)
objTable.deleteTFoot

Applies to | FPHTMLTable Object | IHTMLTable Object