Comment.IsInk property (Word)

Returns a Boolean that represents whether a comment is a handwritten comment.

Syntax

expression. IsInk

expression An expression that returns a 'Comment' object.

Example

The following example removes all handwritten comments from the active document.

Dim objComment As Comment 
 
For Each objComment In ActiveDocument.Comments 
 If objComment.IsInk = True Then 
 objComment.Delete 
 End If 
Next

See also

Comment 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.