Class
PropertyGridValidatingEventArgs

Event arguments that describe RadPropertyGrid's Validating event.

Definition

Namespace:Telerik.UI.Xaml.Controls.Data.PropertyGrid

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class PropertyGridValidatingEventArgs : RadRoutedEventArgs

Inheritance: objectRadRoutedEventArgsPropertyGridValidatingEventArgs

Inherited Members RadRoutedEventArgs.InvokeEventHandler(Delegate, object)RadRoutedEventArgs.OnSetSource(object)RadRoutedEventArgs.RoutedEventRadRoutedEventArgs.SourceRadRoutedEventArgs.HandledRadRoutedEventArgs.OriginalSource

Constructors

PropertyGridValidatingEventArgs(PropertyGridField)

Initializes a new instance of the PropertyGridValidatingEventArgs class.

Declaration

cs-api-definition
public PropertyGridValidatingEventArgs(PropertyGridField field)

Parameters

field

PropertyGridField

The field.

Properties

Field

Gets or sets the field.

Declaration

cs-api-definition
public PropertyGridField Field { get; set; }

Property Value

PropertyGridField

The field.

IsValid

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

Declaration

cs-api-definition
public bool IsValid { get; set; }

Property Value

bool

The is valid.

NewValue

Gets the new value.

Declaration

cs-api-definition
public object NewValue { get; }

Property Value

object

OldValue

Gets the old value.

Declaration

cs-api-definition
public object OldValue { get; }

Property Value

object