Table of Contents

Class TableViewCellEditEndedEventArgs

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Provides data for the CellEditEnded event.

public class TableViewCellEditEndedEventArgs : EventArgs
Inheritance
object
EventArgs
TableViewCellEditEndedEventArgs

Constructors

TableViewCellEditEndedEventArgs(TableViewCell, object?, TableViewColumn, TableViewEditAction)

Initializes a new instance of the TableViewCellEditEndedEventArgs class.

public TableViewCellEditEndedEventArgs(TableViewCell cell, object? dataItem, TableViewColumn column, TableViewEditAction editAction)

Parameters

cell TableViewCell

The cell being edited.

dataItem object

The data item behind the row.

column TableViewColumn

The column of the cell.

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