_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)

Usage

Dim Recipients As Object
Dim Subject As Object
Dim ShowMessage As Object
Dim IncludeAttachment As Object
Dim _Document1 As _Document
_Document1.SendForReview(Recipients, Subject, ShowMessage, IncludeAttachment)

Syntax

Sub SendForReview( _
    <InAttribute()> Optional ByRef Recipients As Object, _
    <InAttribute()> Optional ByRef Subject As Object, _
    <InAttribute()> Optional ByRef ShowMessage As Object, _
    <InAttribute()> Optional ByRef IncludeAttachment As Object _
)
void SendForReview(
    [In, Optional] ref object Recipients, 
    [In, Optional] ref object Subject, 
    [In, Optional] ref object ShowMessage, 
    [In, Optional] ref object IncludeAttachment
);
public: Void SendForReview(
    &Object^ Recipients, 
    &Object^ Subject, 
    &Object^ ShowMessage, 
    &Object^ IncludeAttachment
);
public void SendForReview(
    /*in*/System.Object Recipients, 
    /*in*/System.Object Subject, 
    /*in*/System.Object ShowMessage, 
    /*in*/System.Object IncludeAttachment
);
function SendForReview(
     Recipients : Object, 
     Subject : Object, 
     ShowMessage : Object, 
     IncludeAttachment : Object
);

Parameters

  • Recipients
    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
    Optional Object. A string for the subject of the message. If left blank, the subject will be: Please review "filename".
  • ShowMessage
    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
    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.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

_Document Interface
Microsoft.Office.Interop.Word Namespace

Other Resources

_Document Members