Table of Contents

Class TableViewBeginningEditEventArgs

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Provides data for the BeginningEdit event.

public class TableViewBeginningEditEventArgs : CancelEventArgs
Inheritance
object
EventArgs
CancelEventArgs
TableViewBeginningEditEventArgs

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

cell TableViewCell

The cell being edited.

dataItem object

The data item associated with the cell.

column TableViewColumn

The column containing the cell.

editingArgs RoutedEventArgs

The 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

TableViewCell

Column

Gets the column that contains the cell being edited, if available.

public TableViewColumn Column { get; }

Property Value

TableViewColumn

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