Expand Minimize
This topic has not yet been rated - Rate this topic

DocumentBase.SelectAllEditableRanges Method

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

Namespace:  Microsoft.Office.Tools.Word
Assembly:  Microsoft.Office.Tools.Word.v4.0.Utilities (in Microsoft.Office.Tools.Word.v4.0.Utilities.dll)
public void SelectAllEditableRanges(
	ref Object editorID
)

Parameters

editorID
Type: Object

Can be 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. The default is that only ranges for which all users have permissions are selected.

Optional Parameters

For information on optional parameters, see Optional Parameters in Office Solutions.

The following code example uses the SelectAllEditableRanges method to select all ranges that the current user has the right to modify. To use this example, run it from the ThisDocument class in a document-level project.

private void DocumentSelectAllEditableRanges()
{
    object editorID = Word.WdEditorType.wdEditorCurrent;
    this.SelectAllEditableRanges(ref editorID);
}
Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.