文書を削除する(NotesDocument クラス/Remove メソッド)

Sub Initialize
	Dim session As New NotesSession
	Dim db As NotesDatabase
	Dim doc As NotesDocument
	Dim view As NotesView
	Dim key As String
	Set db = session.Currentdatabase
	Set view = db.GetView("vwAll")
	key = "C01"
	Set doc = view.GetDocumentByKey(key, True)
	If Not(doc Is Nothing) Then
		Call doc.Remove(True)
	Else
		Print "一致する文書が見つかりませんでした。"
	End If	
End Sub





LotusScript 入門 Step4-3 NotesDocument クラス/Remove メソッド

12行目 NotesDocument クラスの Remove メソッドを使用して変数 doc の文書を削除。第1引数に True を指定した場合、スクリプトが文書を開いた後に他のユーザーが文書を変更した場合でも削除する

LotusScript
tyoshida
April 30, 2018 at 1:35 PM
Rating
0





No comments yetLogin first to comment...