Struct CellPosition
Represents a zero-based row/column coordinate within a sheet.
public readonly record struct CellPosition : IEquatable<CellPosition>
- Implements
- Inherited Members
Constructors
CellPosition(int, int)
Represents a zero-based row/column coordinate within a sheet.
public CellPosition(int Row, int Column)
Parameters
Properties
Column
Column index.
public int Column { get; init; }
Property Value
Row
Row index.
public int Row { get; init; }