createTFoot Method

Microsoft FrontPage Visual Basic

createTFoot Method

Creates a TFOOT element inside of a TABLE element.

expression.createTFoot

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

Remarks

Use the deleteTFoot method to remove a TFOOT element from a table.

Example

The following example creates a TFOOT element in the first table in the active document.

    Dim objTable As FPHTMLTable
Dim objTHead As FPHTMLTableSection

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