Word:利用宏批量选中Word表格VBA代码 您所在的位置:网站首页 选择word所有表格 Word:利用宏批量选中Word表格VBA代码

Word:利用宏批量选中Word表格VBA代码

2023-09-11 16:35| 来源: 网络整理| 查看: 265

Sub SelectAllTables()

    Dim tempTable As Table

    

    Application.ScreenUpdating = False

    

    '判断文档是否被保护

    If ActiveDocument.ProtectionType = wdAllowOnlyFormFields Then

        MsgBox "文档已保护,此时不能选中多个表格!"

        Exit Sub

    End If

    '删除所有可编辑的区域

    ActiveDocument.DeleteAllEditableRanges wdEditorEveryone

    '添加可编辑区域

    For Each tempTable In ActiveDocument.Tables

        tempTable.Range.Editors.Add wdEditorEveryone

    Next

    '选中所有可编辑区域

    ActiveDocument.SelectAllEditableRanges wdEditorEveryone

    '删除所有可编辑的区域

    ActiveDocument.DeleteAllEditableRanges wdEditorEveryone

    

    Application.ScreenUpdating = True

    

End Sub



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有