Examples: CutoffDelete property

This script checks documents to see if they are older than the cutoff date, then changes a False value to True.

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