vAlign Property

Microsoft FrontPage Visual Basic

bottomPlaces the caption at the bottom of the table.

The vAlign property for all other objects in the Applies To list.

middleAligns the text in the middle of the object. (Default.)
centerAligns the text in the middle of the object.
baselineAligns the base line of the first line of text with the base lines in adjacent objects.
bottomAligns the text at the bottom of the object.
topAligns the text at the top of the object.

Example

The following example places the caption in the first table in the active document below the table.

Dim objTable As FPHTMLTable
Dim objCaption As FPHTMLTableCaption

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

objCaption.vAlign = "bottom"