如何用vba开启word文档的修订功能?

当在word的“审阅”选项卡下的”修订“组中开启“修订”功能后,所有对word文档的修改都将被记录下来。

在vba中可以设置Document对象的TrackRevisions属性为True,开始修订功能。

Sub QQ1722187970()
    Dim oDoc As Document
    Set oDoc = Word.ActiveDocument
    oDoc.TrackRevisions = True
End Sub
       

发表评论