ReplyWithChanges Method

Microsoft PowerPoint Visual Basic

ReplyWithChanges Method

       

Sends an e-mail message to the author of a presentation that has been sent out for review, notifying them that a reviewer has completed review of the presentation.

expression.ReplyWithChanges(ShowMessage)

expression   Required. An expression that returns one of the objects in the Applies To list.

ShowMessage  Optional Boolean. True to display the message prior to sending. False to automatically send the message without displaying it first. The default is True.

Remarks

Use the SendForReview method to start a collaborative review of a presentation. If the ReplyWithChanges method is executed on a presentation that is not part of a collaborative review cycle, the user will receive an error message.

Example

This example sends a message to the author of a review document that a reviewer has completed a review, without first displaying the e-mail message to the reviewer.  This example assumes that the active presentation is part of a collaborative review cycle.

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