Class TableViewBeginningEditEventArgs
Provides data for the BeginningEdit event.
public class TableViewBeginningEditEventArgs : CancelEventArgs
- Inheritance
-
objectEventArgsCancelEventArgsTableViewBeginningEditEventArgs
Remarks
Initializes a new instance of the TableViewBeginningEditEventArgs class.
Constructors
TableViewBeginningEditEventArgs(TableViewCell, object?, TableViewColumn, RoutedEventArgs)
Provides data for the BeginningEdit event.
public TableViewBeginningEditEventArgs(TableViewCell cell, object? dataItem, TableViewColumn column, RoutedEventArgs editingArgs)
Parameters
cellTableViewCellThe cell being edited.
dataItemobjectThe data item associated with the cell.
columnTableViewColumnThe column containing the cell.
editingArgsRoutedEventArgsThe event args for the editing event.
Remarks
Initializes a new instance of the TableViewBeginningEditEventArgs class.
Properties
Cell
Gets the cell that is entering edit mode.
public TableViewCell Cell { get; }
Property Value
Column
Gets the column that contains the cell being edited, if available.
public TableViewColumn Column { get; }
Property Value
DataItem
Gets the data item associated with the cell being edited.
public object? DataItem { get; }
Property Value
- object
EditingArgs
Gets the input event args that triggered the edit (e.g. double-tap).
public RoutedEventArgs EditingArgs { get; }
Property Value
- RoutedEventArgs