标签:
Sub 选取所有表格() ‘ ‘ 选取表格 宏 ‘ Dim T As Table Application.ScreenUpdating = False ActiveDocument.DeleteAllEditableRanges wdEditorEveryone For Each T In ActiveDocument.Tables T.Range.Editors.Add wdEditorEveryone Next ActiveDocument.SelectAllEditableRanges wdEditorEveryone ActiveDocument.DeleteAllEditableRanges wdEditorEveryone Application.ScreenUpdating = True End Sub
标签:
原文地址:http://www.cnblogs.com/lgx1972/p/5521319.html