CoAuthor.EmailAddress Property (Word)
Returns a string that specifies the e-mail address of the specified co-author. Read-only.
Version Information
Version Added: Word 2010
Syntax
expression .EmailAddress
expression An expression that returns a CoAuthor object.
Example
The following code example displays the e-mail address of the first co-author in the active document.
If ActiveDocument.CoAuthoring.Authors.Count <> 0 Then
MsgBox ActiveDocument.CoAuthoring.Authors(1).EmailAddress
Else
MsgBox "There are no co-authors in this document."
End If