WorkbookBase.ReplyWithChanges(Object) Method

Definition

Sends an e-mail message to the author of a workbook that has been sent out for review, notifying him or her that a reviewer has completed review of the workbook.

public void ReplyWithChanges (object showMessage);
member this.ReplyWithChanges : obj -> unit
Public Sub ReplyWithChanges (Optional showMessage As Object)

Parameters

showMessage
Object

true to display the message; false to not display the message.

Examples

The following code example uses the ReplyWithChanges method to send a notification to the author of a review workbook that a reviewer has completed a review, after displaying the e-mail message. This example assumes that the active workbook is part of a collaborative review cycle.

This example is for a document-level customization.

private void WorkbookReplyWithChanges()
{
    this.ReplyWithChanges(true);
}
Private Sub WorkbookReplyWithChanges()
    Me.ReplyWithChanges(True)
End Sub

Remarks

Use the SendForReview method to start a collaborative review of a workbook. If the ReplyWithChanges method is executed on a workbook that is not part of a collaborative review cycle, an exception is thrown.

Optional Parameters

For information on optional parameters, see Optional Parameters in Office Solutions.

Applies to