例: ReplicationInfo property

次のスクリプトは、データベースの複製の設定で、複製対象の切り離しの間隔を表示します。

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()