Examples: InputPropertyContext property

This script displays the name of the property passed to the composite application action. This script comes from a Notes® form or view action. It executes because the Property Broker invokes it, on receiving a property change published by another component in a composite application.

Dim s As New NotesSession
Dim pb As NotesPropertyBroker
Set pb = s.GetPropertyBroker()
Dim pbInputProperty As NotesProperty
Dim pbContext As Variant
pbContext = pb.InputPropertyContext 
Set pbInputProperty = pbContext(0)
Dim PropName As String
PropName= pbInputProperty.Name
Messagebox "Property Name is " + PropName, MB_OK, "Name"