Occurs when a ART property value changes.
Syntax
'Declaration
Protected Overloads Sub OnPropertyChanged( _
ByVal As String, _
ByVal As Object, _
ByVal As Object _
)
'Usage
Dim instance As ImGearARTPin
Dim name As String
Dim oldValue As Object
Dim newValue As Object
instance.OnPropertyChanged(name, oldValue, newValue)
Parameters
- name
- The name of the property that changed.
- oldValue
- The old value of the property before changing.
- newValue
- The new value of the property after changing.
See Also