text 选中所有表格18-7-6

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 选中所有表格18-7-6相关的知识,希望对你有一定的参考价值。

Sub 选中所有表格()
    Dim T As table
    ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
    For Each T In ActiveDocument.Tables
      If T.Columns.count > 2 And T.Rows.count > 1 Then
        T.Range.Editors.Add wdEditorEveryone
        End If
    Next
    ActiveDocument.SelectAllEditableRanges wdEditorEveryone
    ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
End Sub


Sub SelectAllTables()
    Dim tempTable As table
   


    '删除所有可编辑的区域
    ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
    '添加可编辑区域
    For Each tempTable In ActiveDocument.Tables
        tempTable.Range.Editors.Add wdEditorEveryone
    Next
    '选中所有可编辑区域
    ActiveDocument.SelectAllEditableRanges wdEditorEveryone
  
    '删除所有可编辑的区域
      
    ActiveDocument.DeleteAllEditableRanges wdEditorEveryone
   
   
End Sub

以上是关于text 选中所有表格18-7-6的主要内容,如果未能解决你的问题,请参考以下文章

DELPHI 如何选中MEMO中的某行内容 记录显示到EDIT

word怎么选中表格后边

使用 jQuery 选中表格中的所有复选框

text 选中所有复选框

text 选择所有选中的单选按钮

text 选择全部/取消选中所有复选框。