Show / Hide Table of Contents

Class DataGridCellEditEndedEventArgs

Provides information just after a cell has exited editing mode.

Inheritance
System.Object
System.EventArgs
DataGridCellEditEndedEventArgs
Inherited Members
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 DataGridCellEditEndedEventArgs : EventArgs

Constructors

| Improve this Doc View Source

DataGridCellEditEndedEventArgs(DataGridColumn, DataGridRow, DataGridEditAction)

Instantiates a new instance of this class.

Declaration
public DataGridCellEditEndedEventArgs(DataGridColumn column, DataGridRow row, DataGridEditAction editAction)
Parameters
Type Name Description
DataGridColumn column

The column of the cell that has just exited edit mode.

DataGridRow row

The row container of the cell container that has just exited edit mode.

DataGridEditAction editAction

The editing action that has been taken.

Properties

| Improve this Doc View Source

Column

The column of the cell that has just exited edit mode.

Declaration
public DataGridColumn Column { get; }
Property Value
Type Description
DataGridColumn
| Improve this Doc View Source

EditAction

The edit action taken when leaving edit mode.

Declaration
public DataGridEditAction EditAction { get; }
Property Value
Type Description
DataGridEditAction
| Improve this Doc View Source

Row

The row container of the cell container that has just exited edit mode.

Declaration
public DataGridRow Row { get; }
Property Value
Type Description
DataGridRow
  • Improve this Doc
  • View Source