CalcExternalRangeExpression Constructor(ICalcSource,Int32,Int32,Int32,Int32)
In This Topic
Initializes a new instance of the
CalcRangeExpression class.
Syntax
'Declaration
Public Function New( _
ByVal As ICalcSource, _
ByVal As Integer, _
ByVal startColumn As Integer, _
ByVal As Integer, _
ByVal endColumn As Integer _
)
'Usage
Dim source As ICalcSource
Dim startRow As Integer
Dim startColumn As Integer
Dim endRow As Integer
Dim endColumn As Integer
Dim instance As New CalcExternalRangeExpression(source, startRow, startColumn, endRow, endColumn)
public CalcExternalRangeExpression(
ICalcSource ,
int ,
int startColumn,
int ,
int endColumn
)
Parameters
- source
- The owner of cell range.
- startRow
- Starting row coordinate of the range.
- startColumn
- Starting column coordinate of the range.
- endRow
- Ending row coordinate of the range.
- endColumn
- Ending column coordinate of the range.
See Also