LOTUSSCRIPT/COM/OLE CLASSES


Examples: Abstract property
This script allows large documents to be replicated in their entirety.

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

See Also