Compartilhar via


PageNumbers.DoubleQuote Property

Word Developer Reference

True if Microsoft Word encloses the specified PageNumbers object in double quotation marks ("). Read/write Boolean.

Syntax

expression.DoubleQuote

expression   An expression that returns a PageNumbers object.

Remarks

To set Word to enclose page numbers in double quotation marks by default, use the AddHebDoubleQuote property.

Example

This example encloses the page numbers in the first footer of the active document in double quotation marks (").

Visual Basic for Applications
  ActiveDocument.Sections(1).Footers(1) _
    .PageNumbers.DoubleQuote = True

See Also