Selection.EndnoteOptions (Word)

Returns an EndnoteOptions object that represents the endnotes in a selection.


Sub SetEndnoteOptionsRange() 
 With Selection.EndnoteOptions 
 If .StartingNumber <> 1 Then 
 .StartingNumber = 1 
 End If 
 End With 
End Sub