Struct TableViewCellSlot
Represents a slot of a TableView cell, identified by its row and column indices.
public readonly record struct TableViewCellSlot
Constructors
TableViewCellSlot(int, int)
Represents a slot of a TableView cell, identified by its row and column indices.
public TableViewCellSlot(int Row, int Column)
Parameters
RowintColumnint
Properties
Column
public int Column { get; init; }
Property Value
- int
Row
public int Row { get; init; }
Property Value
- int