QuickObjects.ObjectBase Send comments on this topic.
BeforeValidation Event
See Also  Example
Akal.QuickObjects.ObjectBase Namespace > BaseFieldValidator Class : BeforeValidation Event
Occurs when an field validator is about to perform validation on the field. This event can be used to cancel the validation, by setting the Cancelled member of the event arguments.

Syntax

C# 
public event BeforeValidationEventHandler BeforeValidation()

Example

C#Copy Code
private void HandleBeforeValidation(object sender, BeforeValidationEventArgs e) 

    e.Cancelled = true; 

    

Requirements

Target Platforms: .NET Framework 1.1 or .NET Framework 2.0

See Also