New to Telerik UI for WPFStart a free 30-day trial

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)
Parameters:fieldPropertyGridField

The field.

Properties

Gets or sets the field.

C#
public PropertyGridField Field { get; set; }
Property Value:

The field.

Gets or sets a value that indicates whether the changes are valid.

C#
public bool IsValid { get; set; }
Property Value:

The is valid.

Gets the validation results.

C#
public IEnumerable<ValidationResult> ValidationResults { get; }
Property Value:

The validation results.