oActiveWordDoc.Fields.Unlink
如何检查是否成功取消链接?
答案 0 :(得分:0)
来自MSDN
将Fields集合中的所有字段替换为最新结果。
取消链接字段时,当前结果将转换为文本或图形,并且无法再自动更新。注意 一些字段 - 例如XE(索引条目)字段和SEQ(序列) 字段 - 无法取消链接。
所以
With ActiveDocument.Sections(1).Range.Fields
.Unlink
End With
ActiveDocument.Sections(1).Range.Fields(1) = "whatever"
ActiveDocument.Sections(1).Range.Fields(1).update
应该给出错误