Table of Contents

Class MatrixCellCollection

Namespace
Loehnert.Lisrt.Laser.Keyence.Jobs
Assembly
Loehnert.Lisrt.Laser.Keyence.dll

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 int

Index 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

row int

Row number.

column int

Column number.

Property Value

MatrixCell

The matrix cell at the position.

Exceptions

ArgumentOutOfRangeException

Thrown when row or column is out of range.