Table of Contents

Class TableViewCellEditEndingEventArgs

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Provides data for the CellEditEnding event.

public class TableViewCellEditEndingEventArgs : CancelEventArgs
Inheritance
object
EventArgs
CancelEventArgs
TableViewCellEditEndingEventArgs

Constructors

TableViewCellEditEndingEventArgs(TableViewCell, object?, TableViewColumn, FrameworkElement, TableViewEditAction)

Initializes a new instance of the TableViewCellEditEndingEventArgs class.

public TableViewCellEditEndingEventArgs(TableViewCell cell, object? dataItem, TableViewColumn column, FrameworkElement editingElement, TableViewEditAction editAction)

Parameters

cell TableViewCell

The cell being edited.

dataItem object

The data item behind the row.

column TableViewColumn

The column of the cell.

editingElement FrameworkElement

The editing element.

editAction TableViewEditAction

The edit action.

Properties

Cell

Gets the cell being edited.

public TableViewCell Cell { get; }

Property Value

TableViewCell

Column

Gets the column of the cell.

public TableViewColumn Column { get; }

Property Value

TableViewColumn

DataItem

Gets the data item behind the row.

public object? DataItem { get; }

Property Value

object

EditAction

Gets the edit action.

public TableViewEditAction EditAction { get; }

Property Value

TableViewEditAction

EditingElement

Gets the editing element.

public FrameworkElement EditingElement { get; }

Property Value

FrameworkElement