Compartilhar via


Field.Kind Property

Word Developer Reference

Returns the type of link for a Field object. Read-only WdFieldKind.

Syntax

expression.Kind

expression   Required. A variable that represents a Field object.

Example

This example updates all warm link fields in the active document.

Visual Basic for Applications
  For Each aField In ActiveDocument.Fields
    If aField.Kind = wdFieldKindWarm Then aField.Update
Next aField

See Also