Class DataGridCellEditEndingEventArgs
Provides information just before a cell exits editing mode.
Inheritance
System.Object
System.EventArgs
System.ComponentModel.CancelEventArgs
DataGridCellEditEndingEventArgs
Inherited Members
System.ComponentModel.CancelEventArgs.Cancel
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows.Controls
Assembly: OpenSilver.Controls.Data.dll
Syntax
public class DataGridCellEditEndingEventArgs : CancelEventArgs
Constructors
| Improve this Doc View SourceDataGridCellEditEndingEventArgs(DataGridColumn, DataGridRow, FrameworkElement, DataGridEditAction)
Instantiates a new instance of this class.
Declaration
public DataGridCellEditEndingEventArgs(DataGridColumn column, DataGridRow row, FrameworkElement editingElement, DataGridEditAction editAction)
Parameters
Type | Name | Description |
---|---|---|
DataGridColumn | column | The column of the cell that is about to exit edit mode. |
DataGridRow | row | The row container of the cell container that is about to exit edit mode. |
FrameworkElement | editingElement | The editing element within the cell. |
DataGridEditAction | editAction | The editing action that will be taken. |
Properties
| Improve this Doc View SourceColumn
The column of the cell that is about to exit edit mode.
Declaration
public DataGridColumn Column { get; }
Property Value
Type | Description |
---|---|
DataGridColumn |
EditAction
The edit action to take when leaving edit mode.
Declaration
public DataGridEditAction EditAction { get; }
Property Value
Type | Description |
---|---|
DataGridEditAction |
EditingElement
The editing element within the cell.
Declaration
public FrameworkElement EditingElement { get; }
Property Value
Type | Description |
---|---|
FrameworkElement |
Row
The row container of the cell container that is about to exit edit mode.
Declaration
public DataGridRow Row { get; }
Property Value
Type | Description |
---|---|
DataGridRow |