_Workbook.SendForReview Method

Sends a workbook in an e-mail message for review to the specified recipients.

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

Syntax

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

instance.SendForReview(Recipients, Subject, _
    ShowMessage, IncludeAttachment)
void SendForReview(
    Object Recipients,
    Object Subject,
    Object ShowMessage,
    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

_Workbook Interface

_Workbook Members

Microsoft.Office.Interop.Excel Namespace