NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ListBinding.RemoveOnConvertToTarget

Removes an event handler for the convert to event. This event occurs when getting a value from the datacolumn and sending it to the control, and gives the user the chance to change the value.

[Visual Basic]
Public Sub RemoveOnConvertToTarget( _
   ByVal handler As ConvertEventHandler _
)
[C#]
public void RemoveOnConvertToTarget(
   ConvertEventHandler handler
);
[C++]
public: void RemoveOnConvertToTarget(
   ConvertEventHandler* handler
);
[JScript]
public function RemoveOnConvertToTarget(
   handler : ConvertEventHandler
);

Parameters

handler
handler to remove for this event

See Also

ListBinding Class | ListBinding Members | System.WinForms Namespace | AddOnConvertToTarget