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.RemoveOnConvertFromTarget

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

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

Parameters

handler
handler to remove for this event

See Also

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