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

Adds an event handler for the validated event. The validated event occurs when a control was successfully validated.

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

Parameters

handler
New handler to install for this event.

See Also

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