Share via


Document.DeleteAllComments Method (Word)

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.

Sub DelAllComments() 
 ActiveDocument.DeleteAllComments 
End Sub

See Also

Concepts

Document Object Members

Document Object