Class PropertyGridValidatingEventArgs
Event arguments that describe RadPropertyGrid's Validating event.
Inherited Members
Namespace: Telerik.Windows.Controls.Data.PropertyGrid
Assembly: Telerik.Windows.Controls.Data.dll
Syntax
public class PropertyGridValidatingEventArgs : RadRoutedEventArgs
Constructors
PropertyGridValidatingEventArgs(PropertyGridField)
Initializes a new instance of the PropertyGridValidatingEventArgs class.
Declaration
public PropertyGridValidatingEventArgs(PropertyGridField field)
Parameters
PropertyGridField
field
The field. |
Properties
Field
Gets or sets the field.
Declaration
public PropertyGridField Field { get; set; }
Property Value
PropertyGridField
The field. |
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. |
ValidationResults
Gets the validation results.
Declaration
public IEnumerable<ValidationResult> ValidationResults { get; }
Property Value
System.Collections.Generic.IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult>
The validation results. |