Show / Hide Table of Contents

Class DataGridBeginningEditEventArgs

Provides data for the BeginningEdit event.

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

Constructors

| Improve this Doc View Source

DataGridBeginningEditEventArgs(DataGridColumn, DataGridRow, RoutedEventArgs)

Initializes a new instance of the DataGridBeginningEditEventArgs class.

Declaration
public DataGridBeginningEditEventArgs(DataGridColumn column, DataGridRow row, RoutedEventArgs editingEventArgs)
Parameters
Type Name Description
DataGridColumn column

The column that contains the cell to be edited.

DataGridRow row

The row that contains the cell to be edited.

RoutedEventArgs editingEventArgs

Information about the user gesture that caused the cell to enter edit mode.

Properties

| Improve this Doc View Source

Column

Gets the column that contains the cell to be edited.

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

EditingEventArgs

Gets information about the user gesture that caused the cell to enter edit mode.

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

Row

Gets the row that contains the cell to be edited.

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