DataGridCellEditEndingEventArgs Constructor

Definition

Initializes a new instance of the DataGridCellEditEndingEventArgs class.

public:
 DataGridCellEditEndingEventArgs(System::Windows::Controls::DataGridColumn ^ column, System::Windows::Controls::DataGridRow ^ row, System::Windows::FrameworkElement ^ editingElement, System::Windows::Controls::DataGridEditAction editAction);
public DataGridCellEditEndingEventArgs (System.Windows.Controls.DataGridColumn column, System.Windows.Controls.DataGridRow row, System.Windows.FrameworkElement editingElement, System.Windows.Controls.DataGridEditAction editAction);
new System.Windows.Controls.DataGridCellEditEndingEventArgs : System.Windows.Controls.DataGridColumn * System.Windows.Controls.DataGridRow * System.Windows.FrameworkElement * System.Windows.Controls.DataGridEditAction -> System.Windows.Controls.DataGridCellEditEndingEventArgs
Public Sub New (column As DataGridColumn, row As DataGridRow, editingElement As FrameworkElement, editAction As DataGridEditAction)

Parameters

column
DataGridColumn

The column that contains the cell for which the event occurred.

row
DataGridRow

The row that contains the cell for which the event occurred.

editingElement
FrameworkElement

The element that the cell displays in editing mode.

editAction
DataGridEditAction

A value that indicates whether the edit was canceled or committed.

Applies to

See also