Class
ValidationErrorEventArgs

Provides information about the validation process.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.UI.dll

Syntax:

cs-api-definition
public class ValidationErrorEventArgs : EventArgs

Inheritance: objectEventArgsValidationErrorEventArgs

Inherited Members EventArgs.Empty

Constructors

ValidationErrorEventArgs(object, Exception)

Declaration

cs-api-definition
public ValidationErrorEventArgs(object value, Exception exception)

Parameters

value

object

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

cs-api-definition
public Exception Exception { get; }

Property Value

Exception

Value

Gets the edited value that fails to be validated

Declaration

cs-api-definition
public object Value { get; }

Property Value

object