wps word 批量修改表格样式

https://www.ngui.cc/el/1276218.html?action=onClick

 

Sub 统一表格样式()
'
' 批量修改表格 Macro
' 宏由 zsz 录制,时间: 2020/05/07
'

    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

  

posted @ 2022-12-06 09:57  一个人一个城  阅读(720)  评论(0)    收藏  举报