例: IgnoreDestDeletes property

次のスクリプトは、複製先のデータベースに削除が反映されないようにします。

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