Class MatrixCellCollection
Represents a collection of matric cells.
public class MatrixCellCollection
- Inheritance
-
MatrixCellCollection
- Inherited Members
Properties
this[int]
Gets the cell by index (zero-based).
public MatrixCell this[int index] { get; }
Parameters
index
intIndex of the cell.
Property Value
- MatrixCell
Cell at
index
.
Exceptions
- ArgumentOutOfRangeException
Thrown when a cell index is less than 0 or greater than cells count.
this[int, int]
Gets the cells by row and column index (zero-based).
public MatrixCell this[int row, int column] { get; }
Parameters
Property Value
- MatrixCell
The matrix cell at the position.
Exceptions
- ArgumentOutOfRangeException
Thrown when row or column is out of range.