Class ValidationErrorEventArgs
Provides information about the validation process.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class ValidationErrorEventArgs : EventArgs
Constructors
ValidationErrorEventArgs(Object, Exception)
Declaration
public ValidationErrorEventArgs(object value, Exception exception)
Parameters
System.Object
value
|
System.Exception
exception
|
Properties
Exception
Gets the exception that is caused by the validation of the edited value. Generally the exception is populated by the validation logic and is available for rising by the editor.
Declaration
public Exception Exception { get; }
Property Value
System.Exception
|
Value
Gets the edited value that fails to be validated
Declaration
public object Value { get; }
Property Value
System.Object
|