Occurs when a property value changes.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Protected Overloads Sub OnPropertyChanged( _
   ByVal  As String, _
   ByVal  As Object, _
   ByVal  As Object _
) 
             
        
            
            'Usage
 
Dim instance As ImGearARTMark
Dim name As String
Dim oldValue As Object
Dim newValue As Object
 
instance.OnPropertyChanged(name, oldValue, newValue)
             
        
            
            protected void OnPropertyChanged( 
   string ,
   object ,
   object 
)
             
        
            
            protected: void OnPropertyChanged( 
   string* ,
   Object* ,
   Object* 
) 
             
        
            
            protected:
void OnPropertyChanged( 
   String^ ,
   Object^ ,
   Object^ 
) 
             
        
             
        
            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