Initializes a new instance of the
RangeReference struct.
Syntax
'Declaration
Public Function New( _
ByVal As Integer, _
ByVal column As Integer, _
ByVal As CellRelation, _
ByVal As Integer, _
ByVal column2 As Integer, _
ByVal 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