'Declaration
Public Function New( _ ByVal targetComponent As IComponent, _ ByVal targetPath As String, _ ByVal extenderProvider As IExtenderProvider _ )
'Usage
Dim targetComponent As IComponent Dim targetPath As String Dim extenderProvider As IExtenderProvider Dim instance As New ValueTarget(targetComponent, targetPath, extenderProvider)
public ValueTarget( IComponent targetComponent, string targetPath, IExtenderProvider extenderProvider )
public: ValueTarget( IComponent^ targetComponent, String^ targetPath, IExtenderProvider^ extenderProvider )
Parameters
- targetComponent
- The component that is the target of the value.
The value of this parameter can be
null
(Nothing
in Visual Basic). - targetPath
- Path to a member (typically, a property) on the target component.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - extenderProvider
- The extender provider that enhances the target component with the property.
The value of this parameter can be
null
(Nothing
in Visual Basic).