Поделиться через


Endnotes.NumberStyle Property

Word Developer Reference

Returns or sets the number style. Read/write WdNoteNumberStyle.

Syntax

expression.NumberStyle

expression   An expression that represents a Endnotes object.

Remarks

Some of the constants may not be available to you, depending on the language support (U.S. English, for example) that you’ve selected or installed.

Example

This example sets the formatting for footnotes and endnotes in the active document.

Visual Basic for Applications
  With ActiveDocument
    .Footnotes.NumberStyle = wdNoteNumberStyleLowercaseRoman
    .Endnotes.NumberStyle = wdNoteNumberStyleUppercaseRoman
End With

See Also