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!

Control.RemoveOnValidating

Removes an event handler for the validating event. The validating event occurs when the control loses focus and a control that causes validation gains focus. This is where users can write code to validate the current values of the control.

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

Parameters

handler
handler to remove for this event.

See Also

Control Class | Control Members | System.WinForms Namespace | AddOnValidating