Compartir a través de


Revision.Author Property

Word Developer Reference

Returns the name of the user who made the specified tracked change. Read-only String.

Syntax

expression.Author

expression   Required. A variable that represents a Revision object.

Example

This example displays the author name for the first tracked change in the first selected section.

Visual Basic for Applications
  Dim rngSection as Range

Set rngSection = Selection.Sections(1).Range MsgBox "Revisions made by " & rngSection.Revisions(1).Author

See Also