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 Data
Declaration
public DataFieldValidatingEventArgs(DataFormDataField dataField)
Parameters
Data
|
Properties
IsValid
Gets or sets a value that indicates whether the changes are valid.
Declaration
public bool IsValid { get; set; }
Property Value
System. The is valid. |
NewValue
Gets the new value.
Declaration
public object NewValue { get; }
Property Value
System.
|
OldValue
Gets the old value.
Declaration
public object OldValue { get; }
Property Value
System.
|
ValidationResults
Gets the validation results.
Declaration
public IEnumerable<ValidationResult> ValidationResults { get; }
Property Value
System. The validation results. |