This topic has not yet been rated - Rate this topic

Editor.NextRange Property (Word)

Returns a Range object that represents the next range for which a user has permissions to modify.

expression .NextRange

expression An expression that returns an Editor object.

You can also use the GoToEditableRange method of the Range object to return the next range for which a user has permission to modify.

The following example returns the next range for the first editor in the active selection.

Dim objEditor As Editor 
Dim objRange As Range 
 
Set objEditor = Selection.Editors(1) 
Set objRange = objEditor.NextRange
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.