5,173
社区成员
发帖
与我相关
我的任务
分享Sub CloseAutoUpdates()
Dim update As Style
Set updates = ActiveDocument.Styles
For Each update In updates
If update.Type = wdStyleTypeParagraph Then
update.AutomaticallyUpdate = False
End If
Next
End SubSub CloseAutoUpdates()
Dim update As Style
Set updates = ActiveDocument.Styles
For Each update In updates
If update.InUse = True Then
update.auto
update.AutomaticallyUpdate = False
End If
Next
End Sub