Document.SendForReview(Object, Object, Object, Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sends the document in an e-mail message for review by the specified recipients.
public void SendForReview (ref object Recipients, ref object Subject, ref object ShowMessage, ref object IncludeAttachment);
abstract member SendForReview : obj * obj * obj * obj -> unit
Public Sub SendForReview (Optional ByRef Recipients As Object, Optional ByRef Subject As Object, Optional ByRef ShowMessage As Object, Optional ByRef IncludeAttachment As Object)
Parameters
- Recipients
- Object
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
, an exception is thrown and the message is not sent.
- Subject
- Object
The subject of the message. If left blank, the subject will be: Please review "filename
".
- ShowMessage
- Object
true
to display the message before sending; otherwise, false
. The default is true
. If set to false
, the message is automatically sent to the recipients without first showing the message to the sender.
- IncludeAttachment
- Object
true
to include the document as an attachment; false
to send a link to the document at a server location. If set to false
, the document must be stored at a shared location.
Remarks
This method starts a collaborative review cycle. Use the EndReview method to end a review cycle.
Optional Parameters
For information on optional parameters, see Optional Parameters in Office Solutions.