|
序号hdd检测VBA |
参数hdd检测VBA |
中文hdd检测VBA |
|
0hdd检测VBA |
wdDoNotSaveChangeshdd检测VBA |
不保存待定的更改。hdd检测VBA |
|
-2hdd检测VBA |
wdPromptToSaveChangeshdd检测VBA |
提示用户保存待定更改。hdd检测VBA |
|
-1hdd检测VBA |
wdSaveChangeshdd检测VBA |
自动保存待定更改,而不提示用户。hdd检测VBA |
' 关闭活动文档(保存)hdd检测VBA
ActiveDocument.Close savechanges: = wdSaveChangeshdd检测VBA
hdd检测VBA
' 关闭活动文档(不保存)hdd检测VBA
ActiveDocument.Close savechanges: = wdDoNotSaveChangeshdd检测VBA
hdd检测VBA
'关闭单个文档,并保存变化:hdd检测VBA
Documents("文档名称").Close savechanges: = wdsavechangeshdd检测VBA
hdd检测VBA
'不保存更改的情况下关闭所有文档:hdd检测VBA
Documents.Close savechange: = wdDonotsavechangeshdd检测VBA
hdd检测VBA
'在每个文档关闭之前提示用户保存文档:hdd检测VBA
Dim doc As Documenthdd检测VBA
For Each doc In Documentshdd检测VBA
doc.Close savechanges: = wdpromptTosavechangeshdd检测VBA
Next dochdd检测VBA
hdd检测VBA |