Event arguments that describe RadPropertyGrid's Validating event.
Definition
Namespace:Telerik.Windows.Controls.Data.PropertyGrid
Assembly:Telerik.Windows.Controls.Data.dll
Syntax:
C#
public class PropertyGridValidatingEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsPropertyGridValidatingEventArgs
Constructors
Initializes a new instance of the PropertyGridValidatingEventArgs class.
C#
public PropertyGridValidatingEventArgs(PropertyGridField field)
The field.
Properties
Gets or sets the field.
C#
public PropertyGridField Field { get; set; }
The field.
Gets or sets a value that indicates whether the changes are valid.
C#
public bool IsValid { get; set; }
The is valid.
ValidationResults
IEnumerable<ValidationResult>
Gets the validation results.
C#
public IEnumerable<ValidationResult> ValidationResults { get; }
The validation results.