Document.DeleteAllComments Method

Word Developer Reference

Deletes all comments from the Comments collection in a document.

Syntax

expression.DeleteAllComments

expression   Required. A variable that represents a Document object.

Remarks

Use the Add method for the Comments object to add a comment to a document.

Example

This example deletes all comments in the active document. This example assumes you have comments in active document.

Visual Basic for Applications
  Sub DelAllComments()
    ActiveDocument.DeleteAllComments
End Sub

See Also