.

HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1 212-599-2048

Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development

Facebook Twitter YouTube
Chat now       
.
ProductsDownloadsNewsAbout usContact


Need a Domino Consultant? Call NotesMail +1 212-599-2048 - HCLSoftware Business Partner

LOTUSSCRIPT/COM/OLE CLASSES


Examples: ClearProperty method
This example demonstrates the use of the ClearProperty method to clear the value of a NotesProperty.


Dim s As New NotesSession
Dim pb As NotesPropertyBroker
Set pb = s.GetPropertyBroker()
dim PropName as string
PropName = "Subject"
Call pb.setPropertyValue(PropName,"My Subject")
Print "Property set to value " & pb.getPropertyValue(PropName)(0)
'value of "My Subject" will be printed
Call pb.ClearProperty(PropName)
Print "Property set to value " & pb.getPropertyValue(PropName)(0)
'value of blank will be printed