| 
 | 
 | 
 | 
| 
        | OnEditValidate Method, SftTree Class | 
Raises the EditValidate event.
Syntax SftTree Class (Softelvdm.SftTreeNET)
| VB | Protected Overridable Sub OnEditValidate( ByVal e As EditValidateEventArgs ) | 
| C# | protected virtual void OnEditValidate( EditValidateEventArgs e ); | 
| C++ | protected: virtual void OnEditValidate( EditValidateEventArgs^ e ); | 
e
The event data.
Comments
The OnEditValidate method raises the EditValidate event.
Raising an event invokes the event handler through a delegate.
The OnEditValidate method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
When overriding OnEditValidate in a derived class, make sure to call the base class's OnEditValidate method so that registered delegates receive the event.