Creates a strongly-typed ObjectWrapper.

Namespace:  Mindscape.WpfElements.WpfPropertyGrid
Assembly:  Mindscape.WpfElements (in Mindscape.WpfElements.dll)
Version: 3.0.0.0 (3.0.0.0)

Syntax

C#
public static ObjectWrapper CreateWrapper(
	Node property,
	bool editable,
	Object editContext
)
Visual Basic (Declaration)
Public Shared Function CreateWrapper ( _
	property As Node, _
	editable As Boolean, _
	editContext As Object _
) As ObjectWrapper

Parameters

property
Type: Mindscape.WpfElements.WpfPropertyGrid..::.Node
The property whose value is to be accessed through the wrapper.
editable
Type: System..::.Boolean
Whether the value can be modified.
editContext
Type: System..::.Object
Additional user-specified information to be made available to consumers of the ObjectWrapper.

Return Value

A wrapper which can be used to get or set the property value in a property-agnostic way.

See Also