DocumentBase.SelectAllEditableRanges 方法

选择指定的用户或用户组对其拥有修改权限的全部范围。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)

语法

声明
Public Sub SelectAllEditableRanges ( _
    ByRef editorID As Object _
)
public void SelectAllEditableRanges(
    ref Object editorID
)

参数

  • editorID
    类型:System.Object%
    可以是用户的电子邮件别名(如果在同一个域中)、电子邮件地址或表示用户组的 WdEditorType 常数。默认设置是仅选择所有用户对其拥有权限的范围。

备注

可选参数

有关可选参数的信息,请参见Office 解决方案中的可选参数

示例

下面的代码示例使用 SelectAllEditableRanges 方法选择当前用户对其拥有修改权限的所有范围。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。

Private Sub DocumentSelectAllEditableRanges()
    Me.SelectAllEditableRanges(Word.WdEditorType.wdEditorCurrent)
End Sub
private void DocumentSelectAllEditableRanges()
{
    object editorID = Word.WdEditorType.wdEditorCurrent;
    this.SelectAllEditableRanges(ref editorID);
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间