Skip to content

Container Public Methods

Haruki Takahashi edited this page May 30, 2023 · 1 revision

Column<T>

Represents a column with only a header

public Column(T header)

Represents a column with both a header and the cell content of the column

public Column(T header, IList<T?> values)

Row<T>

Represents an empty row

public Row()

Represents a row and the cell content of the row

public Row(IList<T?> values)

Cell<T>

Represents a cell of ObservableTable[rowIndex][columnIndex] having a value of value

public Cell(int rowIndex, int columnIndex, T? value)
Clone this wiki locally