Class DataFieldValidatingEventArgs
Provides data for a DataFormDataField validating event.
Inherited Members
Namespace: Telerik.Windows.Controls.Data.DataForm
Assembly: Telerik.Windows.Controls.Data.dll
Syntax
public class DataFieldValidatingEventArgs : DataFieldEventArgs
Constructors
DataFieldValidatingEventArgs(DataFormDataField)
Initializes a new instance of the DataFieldValidatingEventArgs class.
Declaration
public DataFieldValidatingEventArgs(DataFormDataField dataField)
Parameters
DataFormDataField
dataField
|
Properties
IsValid
Gets or sets a value that indicates whether the changes are valid.
Declaration
public bool IsValid { get; set; }
Property Value
System.Boolean
The is valid. |
NewValue
Gets the new value.
Declaration
public object NewValue { get; }
Property Value
System.Object
|
OldValue
Gets the old value.
Declaration
public object OldValue { get; }
Property Value
System.Object
|
ValidationResults
Gets the validation results.
Declaration
public IEnumerable<ValidationResult> ValidationResults { get; }
Property Value
System.Collections.Generic.IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult>
The validation results. |