Sets the value of the property.

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

Syntax

C#
void SetValue(
	Object obj,
	Object value,
	BindingFlags invokeAttr,
	Binder binder,
	Object[] index,
	CultureInfo culture
)
Visual Basic (Declaration)
Sub SetValue ( _
	obj As Object, _
	value As Object, _
	invokeAttr As BindingFlags, _
	binder As Binder, _
	index As Object(), _
	culture As CultureInfo _
)

Parameters

obj
Type: System..::.Object
The object whose property value will be set.
value
Type: System..::.Object
The value to which to set the property.
invokeAttr
Type: System.Reflection..::.BindingFlags
The invocation attribute.
binder
Type: System.Reflection..::.Binder
A reflection binder, or null to use the default binder.
index
Type: array< System..::.Object >[]()[]
The index values for indexed properties, or null for non-indexed properties.
culture
Type: System.Globalization..::.CultureInfo
The culture to use for localization.

See Also