LOTUSSCRIPT/COM/OLE CLASSES


Examples: Clear method
This script clears the previously published property "Track" from the selected NotesPropertyBroker.

Dim s As New NotesSession
Dim pb As NotesPropertyBroker
Set pb = s.GetPropertyBroker("com.ibm.compositeapps.samples")
Dim prop As NotesProperty
prop = pb.getPropertyValue("Track","com.ibm.compositeapps.othersamples")
Call prop.Clear()