LOTUSSCRIPT /COM/OLE のクラス


例:Remove メソッド
次のエージェントは、ユーザーの決定に従って、現在の文書の Body アイテムから文書リンクを削除します。

%INCLUDE "lsconst.lss"

Dim session As NotesSession
Dim db As NotesDatabase
Dim dc As NotesDocumentCollection
Dim doc As NotesDocument
Dim rti As NotesRichTextItem
Dim rtnav As NotesRichTextNavigator
Dim rtlink As NotesRichTextDocLink

Sub Initialize
 Set session = New NotesSession
 Set db = session.CurrentDatabase
 Set dc = db.UnprocessedDocuments
 Set doc = dc.GetFirstDocument
 Set rti = doc.GetFirstItem("Body")
 Set rtnav = rti.CreateNavigator
 If Not rtnav.FindFirstElement(RTELEM_TYPE_DOCLINK) Then
   Messagebox "No doclinks in Body item",, "No doclinks"
   Exit Sub
 End If
 Do
   Set rtlink = rtnav.GetElement
   If Messagebox("Do you want to delete this doclink?", _
   MB_YESNO + MB_ICONQUESTION, _
   rtlink.DisplayComment) = IDYES Then
     rtlink.Remove
   End If
 Loop While rtnav.FindNextElement
 Call doc.Save(True, True)
End Sub

関連項目