此代码是用 Word 2007 编写的。
With Selection.Tables(1)
If .Style <> "Table Grid" Then
.Style = "Table Grid"
End If
.ApplyStyleHeadingRows = True
.ApplyStyleLastRow = False
.ApplyStyleFirstColumn = True
.ApplyStyleLastColumn = False
.ApplyStyleRowBands = True
.ApplyStyleColumnBands = False
End With
客户端使用的是 Word 2003,但存在不兼容问题。说:
有什么方法可以使代码在 Word 2003 中兼容。