使用NotesRichTextDoclink.Remove时,每个人都无法删除doclink

时间:2017-12-28 04:03:54

标签: lotus-notes lotusscript

使用NotesRichTextDoclink.Remove

时,我无法删除doclink

这是我的代码。

enter image description here

  1. 从富文本字段名称“All”获取notesrichtextitem
  2. 将notesrichtextnavigator设置为doclink
  3. 将notesrichtextitemlink设置为最后一个元素并调用remove
  4. 但......

    在“全部”字段中没有删除!

    之前:有5个doclink

    enter image description here

    之后:还有5个doclink!

    enter image description here

    请帮帮我。

    谢谢。

1 个答案:

答案 0 :(得分:1)

您可能忘记在删除链接后保存文档,因为您的代码看起来很好。

在代码末尾添加此行:

Call doc.Save(False, False)