IsInk Property

Microsoft Word Visual Basic

IsInk Property

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

expression.IsInk

expression    Required. 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