-
Notifications
You must be signed in to change notification settings - Fork 0
Container Public Methods
Haruki Takahashi edited this page May 30, 2023
·
1 revision
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)
Represents an empty row
public Row()
Represents a row and the cell content of the row
public Row(IList<T?> values)
Represents a cell of ObservableTable[rowIndex][columnIndex]
having a value of value
public Cell(int rowIndex, int columnIndex, T? value)