Examples: Publish method (NotesPropertyBroker - LotusScript®)

This script publishes the property value of "Track" in the NotesPropertyBroker.

Dim s As New NotesSession
Dim pb As NotesPropertyBroker
Set pb = s.GetPropertyBroker()
Call pb.setPropertyValue("Track",newCategory$)
Call pb.Publish()