Table of Contents

Class TableViewCellSelectionChangedEventArgs

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Provides data for the cell selection changed event.

public class TableViewCellSelectionChangedEventArgs : EventArgs
Inheritance
object
EventArgs
TableViewCellSelectionChangedEventArgs

Constructors

TableViewCellSelectionChangedEventArgs(IList<TableViewCellSlot>, IList<TableViewCellSlot>)

Initializes a new instance of the TableViewCellSelectionChangedEventArgs class.

public TableViewCellSelectionChangedEventArgs(IList<TableViewCellSlot> removedCells, IList<TableViewCellSlot> addedCells)

Parameters

removedCells IList<TableViewCellSlot>

The list that contains the cells that were unselected.

addedCells IList<TableViewCellSlot>

The list that contains the cells that were selected.

Properties

AddedCells

Gets a list that contains the cells that were selected.

public IList<TableViewCellSlot> AddedCells { get; }

Property Value

IList<TableViewCellSlot>

RemovedCells

Gets a list that contains the cells that were unselected.

public IList<TableViewCellSlot> RemovedCells { get; }

Property Value

IList<TableViewCellSlot>