[]
        
(Showing Draft Content)

GrapeCity.CalcEngine.RangeReference.-ctor

RangeReference Constructor

RangeReference(int, int, CellRelation)

Initializes a new instance of the RangeReference struct.

Declaration
public RangeReference(int row, int column, CellRelation position)
Public Sub New(row As Integer, column As Integer, position As CellRelation)
Parameters
Type Name Description
int row

An integer value indicates the row index.

int column

An integer value indicates the column index.

CellRelation position

A CellRelation value indicates whether the reference is relative and/or absolute.

RangeReference(int, int, int, int)

Initializes a new instance of the RangeReference struct.

Declaration
public RangeReference(int row, int column, int row2, int column2)
Public Sub New(row As Integer, column As Integer, row2 As Integer, column2 As Integer)
Parameters
Type Name Description
int row

An integer value indicates the absolute top row index.

int column

An integer value indicates the absolute left column index.

int row2

An integer value indicates the absolute bottom row index.

int column2

An integer value indicates the absolute right column index.

RangeReference(int, int, CellRelation, int, int, CellRelation)

Initializes a new instance of the RangeReference struct.

Declaration
public RangeReference(int row, int column, CellRelation topLeftPosition, int row2, int column2, CellRelation bottomRightPosition)
Public Sub New(row As Integer, column As Integer, topLeftPosition As CellRelation, row2 As Integer, column2 As Integer, bottomRightPosition As CellRelation)
Parameters
Type Name Description
int row

An integer value indicates the top row index.

int column

An integer value indicates the left column index.

CellRelation topLeftPosition

A CellRelation value indicates whether the top-left reference is relative and/or absolute.

int row2

An integer value indicates the bottom row index.

int column2

An integer value indicates the right column index.

CellRelation bottomRightPosition

A CellRelation value indicates whether the bottom-right reference is relative and/or absolute.

RangeReference(CellReference, CellReference)

Initializes a new instance of the RangeReference struct.

Declaration
public RangeReference(CellReference topLeft, CellReference bottomRight)
Public Sub New(topLeft As CellReference, bottomRight As CellReference)
Parameters
Type Name Description
CellReference topLeft

The top left reference.

CellReference bottomRight

The bottom right reference.