Document.ReplyWithChanges method (Word)

Sends an email message to the author of a document that has been sent out for review, notifying them that a reviewer has completed review of the document.

Syntax

expression. ReplyWithChanges( _ShowMessage_ )

expression Required. A variable that represents a Document object.

Parameters

Name Required/Optional Data type Description
ShowMessage Optional Variant True to display the message prior to sending. False to automatically send the message without displaying it first. The default value is True.

Remarks

Use the SendForReview method to start a collaborative review of a document. If the ReplyWithChanges method is executed on a document that is not part of a collaborative review cycle, Microsoft Word displays an error message.

Example

This example sends a message notifying the author that a reviewer has completed a review, without first displaying the email message to the reviewer. This example assumes that the current document is part of a collaborative review cycle.

Sub ReplyMsg() 
 ActiveDocument.ReplyWithChanges ShowMessage:=False 
End Sub

See also

Document Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.