SetValueOverride Delegate

Allows a custom override of the SetValue logic associated with a dependency property that is defined on a dependency object.

Namespace: System.Workflow.ComponentModel
Assembly: System.Workflow.ComponentModel (in system.workflow.componentmodel.dll)

'Declaration
Public Delegate Sub SetValueOverride ( _
	d As DependencyObject, _
	value As Object _
)
'Usage
Dim instance As New SetValueOverride(AddressOf HandlerMethod)
/** @delegate */
public delegate void SetValueOverride (
	DependencyObject d, 
	Object value
)
Not applicable.

Parameters

d

The DependencyProperty that targets the SetValue method.

value

The Object to set the value to.

The implemetation of this delegate can be set to the SetValueOverride property of PropertyMetadata while calling Register or RegisterAttached.

Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0

Community Additions

ADD
Show: