[This is preliminary documentation and is subject to change.]

Called when an observed key path changes.

Namespace:  KNKVC
Assembly:  KNKVC (in KNKVC.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
void observeValueForKeyPathOfObject(
	string keyPath,
	Object obj,
	Dictionary<string, Object> change,
	Object context
)
Visual Basic (Declaration)
Sub observeValueForKeyPathOfObject ( _
	keyPath As String, _
	obj As Object, _
	change As Dictionary(Of String, Object), _
	context As Object _
)
Visual C++
void observeValueForKeyPathOfObject(
	String^ keyPath, 
	Object^ obj, 
	Dictionary<String^, Object^>^ change, 
	Object^ context
)

Parameters

keyPath
Type: System..::.String
The key path that changed.
obj
Type: System..::.Object
The object on which the key path changed.
change
Type: System.Collections.Generic..::.Dictionary<(Of <(String, Object>)>)
The change dictionary. See KNKVOConstants for possible keys.
context
Type: System..::.Object
The context of the observation.

See Also