Table of Contents

Struct TableViewCellSlot

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

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

Row int
Column int

Properties

Column

public int Column { get; init; }

Property Value

int

Row

public int Row { get; init; }

Property Value

int