LOTUSSCRIPT/COM/OLE CLASSES


Examples: Remove method
This script removes the Useless item from a document.

Dim doc As NotesDocument
Dim item As NotesItem
'...set value of doc...
Set item = doc.GetFirstItem( "Useless" )
Call item.Remove
Call doc.Save( False, True )

See Also