Table of Contents

Struct CellPosition

Namespace
WeihanLi.Npoi
Assembly
WeihanLi.Npoi.dll

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

Row int

Row index.

Column int

Column index.

Properties

Column

Column index.

public int Column { get; init; }

Property Value

int

Row

Row index.

public int Row { get; init; }

Property Value

int