Class TableViewCellEditEndedEventArgs
Provides data for the CellEditEnded event.
public class TableViewCellEditEndedEventArgs : EventArgs
- Inheritance
-
objectEventArgsTableViewCellEditEndedEventArgs
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
cellTableViewCellThe cell being edited.
dataItemobjectThe data item behind the row.
columnTableViewColumnThe column of the cell.
editActionTableViewEditActionThe edit action.
Properties
Cell
Gets the cell being edited.
public TableViewCell Cell { get; }
Property Value
Column
Gets the column of the cell.
public TableViewColumn Column { get; }
Property Value
DataItem
Gets the data item behind the row.
public object? DataItem { get; }
Property Value
- object
EditAction
Gets the edit action.
public TableViewEditAction EditAction { get; }