Spread WinForms 15
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / RangeReference Structure / RangeReference Constructor / RangeReference Constructor(Int32,Int32,CellRelation,Int32,Int32,CellRelation)
An integer value indicates the top row index.
An integer value indicates the left column index.
A CellRelation value indicates whether the top-left reference is relative and/or absolute.
An integer value indicates the bottom row index.
An integer value indicates the right column index.
A CellRelation value indicates whether the bottom-right reference is relative and/or absolute.


In This Topic
RangeReference Constructor(Int32,Int32,CellRelation,Int32,Int32,CellRelation)
In This Topic
Initializes a new instance of the RangeReference struct.
Syntax
'Declaration
 
Public Function New( _
   ByVal row As Integer, _
   ByVal column As Integer, _
   ByVal topLeftPosition As CellRelation, _
   ByVal row2 As Integer, _
   ByVal column2 As Integer, _
   ByVal bottomRightPosition As CellRelation _
)
 
'Usage
 
Dim row As Integer
Dim column As Integer
Dim topLeftPosition As CellRelation
Dim row2 As Integer
Dim column2 As Integer
Dim bottomRightPosition As CellRelation
 
Dim instance As New RangeReference(row, column, topLeftPosition, row2, column2, bottomRightPosition)

Parameters

row
An integer value indicates the top row index.
column
An integer value indicates the left column index.
topLeftPosition
A CellRelation value indicates whether the top-left reference is relative and/or absolute.
row2
An integer value indicates the bottom row index.
column2
An integer value indicates the right column index.
bottomRightPosition
A CellRelation value indicates whether the bottom-right reference is relative and/or absolute.
See Also