COMPOSITE APPLICATIONS - DESIGN AND MANAGEMENT
NotesSession
The property broker format (relative to LSX) is as below:
New LotusScript API to publish properties
Sub Click(Source As Button)
Dim s As New NotesSession
...
Dim pb As NotesPropertyBroker
Set pb = s.GetPropertyBroker()
Call pb.setPropertyValue("Track", newTrack$)
Call pb.Publish()
End Sub
New LotusScript API to retrieve properties
Dim s As New notessession
Dim pbInputProperty As NotesProperty
Dim pbContext As Variant
pbContext = pb.InputPropertyContext
Set pbInputProperty = pbContext(0)
Dim InputPropertyName As String
Dim NameSpace As String
InputPropertyName = pbInputProperty.Name
NameSpace = pbInputProperty.NameSpace
Dim pbValue As Variant
pbValue = pb.getPropertyValue(InputPropertyName,NameSpace)
cName$ = pbValue(0)
See Also