Event arguments that describe RadPropertyGrid's Validated event.
Definition
Namespace:Telerik.Windows.Controls.Data.PropertyGrid
Assembly:Telerik.Windows.Controls.Data.dll
Syntax:
C#
public class PropertyGridValidatedEventArgs : RadRoutedEventArgs
Inheritance: objectRadRoutedEventArgsPropertyGridValidatedEventArgs
Constructors
Initializes a new instance of the PropertyGridValidatedEventArgs class.
C#
public PropertyGridValidatedEventArgs(PropertyGridField field, IEnumerable<ValidationResult> validationResults)
The field.
validationResultsIEnumerable<ValidationResult>The validation results.
Properties
Gets or sets the field.
C#
public PropertyGridField Field { get; set; }
The field.
ValidationResults
IEnumerable<ValidationResult>
Gets the validation results.
C#
public IEnumerable<ValidationResult> ValidationResults { get; }
The validation results.