Show / Hide Table of Contents

Class DataGridRowEditEndingEventArgs

Provides information just before a row exits editing mode.

Inheritance
System.Object
System.EventArgs
System.ComponentModel.CancelEventArgs
DataGridRowEditEndingEventArgs
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 DataGridRowEditEndingEventArgs : CancelEventArgs

Constructors

| Improve this Doc View Source

DataGridRowEditEndingEventArgs(DataGridRow, DataGridEditAction)

Instantiates a new instance of this class.

Declaration
public DataGridRowEditEndingEventArgs(DataGridRow row, DataGridEditAction editAction)
Parameters
Type Name Description
DataGridRow row

The row container of the cell container that is about to exit edit mode.

DataGridEditAction editAction

The editing action that will be taken.

Properties

| Improve this Doc View Source

EditAction

The editing action that will be taken.

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

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
  • Improve this Doc
  • View Source