Struct CKGridCellRef
Represents a rectangular cell reference within a CKTableGrid. Coordinates are 1 based and inclusive.
Inherited Members
Namespace: CoverageKiller2.DOM.Tables
Assembly: CoverageKiller2.dll
Syntax
public readonly struct CKGridCellRef
Constructors
CKGridCellRef(int, int, int, int)
Initializes a new instance of the CKGridCellRef struct.
Declaration
public CKGridCellRef(int rMin, int cMin, int rMax, int cMax)
Parameters
Type | Name | Description |
---|---|---|
int | rMin | Start row (inclusive, zero-based). |
int | cMin | Start column (inclusive, zero-based). |
int | rMax | End row (inclusive, zero-based). |
int | cMax | End column (inclusive, zero-based). |
Properties
ColMax
The ending column
Declaration
public int ColMax { get; }
Property Value
Type | Description |
---|---|
int |
ColMin
The starting column
Declaration
public int ColMin { get; }
Property Value
Type | Description |
---|---|
int |
RowMax
The ending row
Declaration
public int RowMax { get; }
Property Value
Type | Description |
---|---|
int |
RowMin
The starting row
Declaration
public int RowMin { get; }
Property Value
Type | Description |
---|---|
int |
Methods
ToString()
Returns a string representation of the grid cell reference.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string |