CoAuthor.Name Property (Word)
Returns a String that contains the display name of the specified co-author. Read-only.
Version Information
Version Added: Word 2010
Syntax
expression .Name
expression An expression that returns a CoAuthor object.
Example
The following code example displays the name of the first co-author in the active document.
Set coAuth = ActiveDocument.CoAuthoring.Authors(1)
MsgBox "The name of the user is " & _
coAuth.Name & "."