Application.PutFocusInMailHeader Method

Word Developer Reference

Places the insertion point in the To line of the mail header if the document in the active window is an e-mail document.

Syntax

expression.PutFocusInMailHeader

expression   Required. A variable that represents an Application object.

Remarks

For best results, use the PutFocusInMailHeader method with the EnvelopeVisible property. When the EnvelopeVisible property is set to True, the PutFocusInMailHeader method will place the insertion point in the mail header.

Example

The following example displays the mail header for the active document and then place the insertion point in the To line of the mail header.

Visual Basic for Applications
  ActiveDocument.ActiveWindow.EnvelopeVisible = True
Application.PutFocusInMailHeader

See Also