Class TableViewCellSelectionChangedEventArgs
Provides data for the cell selection changed event.
public class TableViewCellSelectionChangedEventArgs : EventArgs
- Inheritance
-
objectEventArgsTableViewCellSelectionChangedEventArgs
Constructors
TableViewCellSelectionChangedEventArgs(IList<TableViewCellSlot>, IList<TableViewCellSlot>)
Initializes a new instance of the TableViewCellSelectionChangedEventArgs class.
public TableViewCellSelectionChangedEventArgs(IList<TableViewCellSlot> removedCells, IList<TableViewCellSlot> addedCells)
Parameters
removedCellsIList<TableViewCellSlot>The list that contains the cells that were unselected.
addedCellsIList<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>