Notes
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
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 & "."