如何⽤vba删除word表格中的⾏列?在vba中,Row对象表⽰word表格的⾏,Column对象表⽰word表格的列。
要删除word表格⾏、列只需使⽤对应的⽅法即可。
代码如下:
Sub exceloffice()
'作者QQ:1722187970,:xycgenius,exceloffice
Dim oDoc As Document
Set oDoc = Word.ActiveDocument
Dim oT As Table
Dim oRow As Row
Dim oColumn As Column
With oDoc
Set oT = .Tables(1)
With oTdelete删除表格还是内容
Set oRow = .Rows(7)
oRow.Delete
Set oColumn = .Columns(3)
oColumn.Delete
End With
End With
End Sub
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论