Selection.NextField Method

Word Developer Reference

Selects the next field.

Syntax

expression.NextField

expression   Required. A variable that represents a Selection object.

Return Value
Field

Remarks

If this method finds a field, it returns a Field object; if not, it returns Nothing.

Example

This example updates the next field in the selection.

Visual Basic for Applications
  If Not (Selection.NextField Is Nothing) Then
    Selection.Fields.Update
End If

This example selects the next field in the selection, and if a field is found, displays a message in the status bar.

Visual Basic for Applications
  Set myField = Selection.NextField
If Not (myField Is Nothing) Then StatusBar = "Field found"

See Also