5,172
社区成员




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 Sub
Sub 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