Show / Hide Table of Contents

Struct CKGridCellRef

Represents a rectangular cell reference within a CKTableGrid. Coordinates are 1 based and inclusive.

Inherited Members
ValueType.Equals(object)
ValueType.GetHashCode()
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetType()
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
Overrides
ValueType.ToString()

Extension Methods

PingService.PingPong<T>(T, string)
PingService.PingPong<T>(T, string, string)
PingService.PingPong<T, TResult>(T, Func<TResult>, string, string)
PingService.Ping<T>(T, string)
PingService.Ping<T>(T, string, string)
PingService.Ping<T>(T, Type[], string)
PingService.Pong<T>(T, string)
PingService.Pong<T>(T, string, string)
PingService.Pong<T>(T, Type, string)
PingService.Pong<T>(T, Type[], string)
PingService.Pong<T, TResult>(T, Func<TResult>, string, string)
In this article
Back to top Generated by DocFX