Initializes a new instance of the
CalcEvaluatorContext class.
Syntax
'Declaration
Public Function New( _
ByVal As ICalcSource, _
Optional ByVal As System.Boolean, _
Optional ByVal As System.Integer, _
Optional ByVal baseColumnIndex As System.Integer, _
Optional ByVal As System.Integer, _
Optional ByVal columnCount As System.Integer _
)
'Usage
Dim source As ICalcSource
Dim arrayFormulaMode As System.Boolean
Dim baseRowIndex As System.Integer
Dim baseColumnIndex As System.Integer
Dim rowCount As System.Integer
Dim columnCount As System.Integer
Dim instance As New CalcEvaluatorContext(source, arrayFormulaMode, baseRowIndex, baseColumnIndex, rowCount, columnCount)
public CalcEvaluatorContext(
ICalcSource ,
System.bool ,
System.int ,
System.int baseColumnIndex,
System.int ,
System.int columnCount
)
Parameters
- source
- The source.
- arrayFormulaMode
- if set to
true
[array formula mode]. - baseRowIndex
- Index of the base row.
- baseColumnIndex
- Index of the base column.
- rowCount
- The row count.
- columnCount
- The column count.
See Also