Examples: ReplicationInfo property

This script displays the cut-off interval in the replication settings of a database.

Dim session As New NotesSession
Dim db As NotesDatabase
Dim rep As NotesReplication
Set db = session.CurrentDatabase
Set rep = db.ReplicationInfo
Messagebox rep.cutoffinterval
Call rep.Save()