Share via


Comment.IsInk Property

Word Developer Reference

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.

Visual Basic for Applications
  Dim objComment As Comment

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

See Also