Document.FooterCenter Property

Visio Automation Reference

Gets or sets the text string that appears in the center portion of a document's footer. Read/write.

Version Information
 Version Added:  Visio 2002

Syntax

expression.FooterCenter

expression   A variable that represents a Document object.

Return Value
String

Remarks

You can also set this value in the Center box under Footer in the Header and Footer dialog box (View menu).

Both the string returned by the property and the string you pass to the property can contain escape codes that represent data. These escape codes can be concatenated with other text. For a list of valid escape codes you can use with the FooterCenter property, see the FooterLeft property topic.

Example

The following macro shows how to place a string containing the current page number and total number of pages into the center portion of a document's footer. After you run this macro on a one-page document, the center portion of the footer contains "Page 1 of 1".

Visual Basic for Applications
  
Sub FooterCenter_Example() 
Dim strFooter as String

'Build the footer string. 
strFooter = "Page &p of &P" 

'Set the footer of the current document. 
 ThisDocument.FooterCenter = strFooter

End Sub

See Also