例: IgnoreDeletes property

次のスクリプトは、削除が反映されないように IgnoreDeletes プロパティを設定します。

Dim session As New NotesSession
Dim db As NotesDatabase
Dim rep As NotesReplication
Set db = session.CurrentDatabase
Set rep = db.ReplicationInfo
If Not rep.IgnoreDeletes Then
  rep.IgnoreDeletes = True
End If
Call rep.Save()