tFoot Property

Microsoft FrontPage Visual Basic

tFoot Property

Returns an IHTMLTableSection object that represents the TFOOT element in a TABLE element.

expression.tFoot

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

Example

The following example sets the background color for the TFOOT element in the first table in the active document.

    Dim objTable As FPHTMLTable
Dim objTFoot As FPHTMLTableSection

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

objTFoot.bgColor = "blue"