Field.Kind Property (Word)
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.
For Each aField In ActiveDocument.Fields
If aField.Kind = wdFieldKindWarm Then aField.Update
Next aField