Document.SelectAllEditableRanges Method

Word Developer Reference

Selects all ranges for which the specified user or group of users has permission to modify.

Syntax

expression.SelectAllEditableRanges(EditorID)

expression   Required. A variable that represents a Document object.

Parameters

Name Required/Optional Data Type Description
EditorID Optional Variant Can be either a String that represents the user's e-mail alias (if in the same domain), an e-mail address, or a WdEditorType constant that represents a group of users. If omitted, only ranges for which all users have permissions will be selected.

Example

The following example selects all ranges for which the current user has permission to modify.

Visual Basic for Applications
  ActiveDocument.SelectAllEditableRanges wdEditorCurrent

See Also