Class GridDataRowValidatingEventArgs
Inherited Members
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public class GridDataRowValidatingEventArgs : SyncfusionRoutedEventArgs
Constructors
GridDataRowValidatingEventArgs()
Initializes a new instance of the GridDataRowValidatingEventArgs class.
Declaration
public GridDataRowValidatingEventArgs()
Properties
IsValid
Gets or sets a value indicating whether this instance is valid.
Declaration
public bool IsValid { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
NewValues
Gets or sets the new values.
Declaration
public Dictionary<string, object> NewValues { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.Object> | The new values. |
Record
Gets or sets the record.
Declaration
public object Record { get; }
Property Value
Type | Description |
---|---|
System.Object | The record. |
RowIndex
Gets or sets the index of the row.
Declaration
public int RowIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the row. |