_Document.SendForReview Method

Sends a document in an e-mail message for review by the specified recipients.

Namespace:  Microsoft.Office.Interop.Word
Assembly:  Microsoft.Office.Interop.Word (in Microsoft.Office.Interop.Word.dll)

Syntax

'Declaration
Sub SendForReview ( _
    ByRef Recipients As Object, _
    ByRef Subject As Object, _
    ByRef ShowMessage As Object, _
    ByRef IncludeAttachment As Object _
)
'Usage
Dim instance As _Document
Dim Recipients As Object
Dim Subject As Object
Dim ShowMessage As Object
Dim IncludeAttachment As Object

instance.SendForReview(Recipients, Subject, _
    ShowMessage, IncludeAttachment)
void SendForReview(
    ref Object Recipients,
    ref Object Subject,
    ref Object ShowMessage,
    ref Object IncludeAttachment
)

Parameters

  • Recipients
    Type: System.Object%
    Optional Object. A string that lists the people to whom to send the message. These can be unresolved names and aliases in an e-mail phone book or full e-mail addresses. Separate multiple recipients with a semicolon (;). If left blank and ShowMessage is False, you will receive an error message and the message will not be sent.
  • Subject
    Type: System.Object%
    Optional Object. A string for the subject of the message. If left blank, the subject will be: Please review "filename".
  • ShowMessage
    Type: System.Object%
    Optional Object. A Boolean value that indicates whether the message should be displayed when the method is executed. The default value is True. If set to False, the message is automatically sent to the recipients without first showing the message to the sender.
  • IncludeAttachment
    Type: System.Object%
    Optional Object. A Boolean value that indicates whether the message should include an attachment or a link to a server location. The default value is True. If set to False, the document must be stored at a shared location.

Remarks

The SendForReview method starts a collaborative review cycle. Use the EndReview method to end a review cycle.

See Also

Reference

_Document Interface

_Document Members

Microsoft.Office.Interop.Word Namespace