text 使用VBA在MS Word中的表的顶部/底部插入新行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 使用VBA在MS Word中的表的顶部/底部插入新行相关的知识,希望对你有一定的参考价值。

Sub insertTopRow()
    Dim theTable As Table
    Dim theNewRow As Row
    Dim i As Integer

For i = 1 to ActiveDocument.Tables.Count
        Set theTable = ActiveDocument.Tables(i)
        Set theNewRow = theTable.Rows.Add(theTable.Rows.First)
        'Other row formatting
    Next i
End Sub

Sub insertBottomRow()
    Dim theTable As Table
    Dim theNewRow As Row
    Dim i As Integer

For i = 1 to ActiveDocument.Tables.Count
        Set theTable = ActiveDocument.Tables(i)
        Set theNewRow = theTable.Rows.Add
        'Other row formatting
    Next i
End Sub

以上是关于text 使用VBA在MS Word中的表的顶部/底部插入新行的主要内容,如果未能解决你的问题,请参考以下文章

使用 VBA (MS Access) 中的 bigint 字段更新 SQL 表

使用 MS Access 和 VBA 更新 Ms Word 文档中的(字段代码:数据库)字段

使用word中的VBA宏删除它后面没有表的字符串

如何使用VBA循环访问MS Word中的每个字母?

MS Word,VBA,如何选择表格内单元格中的段落?

通过 VBA excel 程序在 MS Word 标题中的边框线后添加页码和新行