Spread WPF 17
GrapeCity.CalcEngine Namespace / CalcEvaluatorContext Class / CalcEvaluatorContext Constructor
The source.
if set to true [array formula mode].
Index of the base row.
Index of the base column.
The row count.
The column count.


In This Topic
    CalcEvaluatorContext Constructor
    In This Topic
    Initializes a new instance of the CalcEvaluatorContext class.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal source As ICalcSource, _
       Optional ByVal arrayFormulaMode As Boolean, _
       Optional ByVal baseRowIndex As Integer, _
       Optional ByVal baseColumnIndex As Integer, _
       Optional ByVal rowCount As Integer, _
       Optional ByVal columnCount As Integer _
    )
    'Usage
     
    Dim source As ICalcSource
    Dim arrayFormulaMode As Boolean
    Dim baseRowIndex As Integer
    Dim baseColumnIndex As Integer
    Dim rowCount As Integer
    Dim columnCount As Integer
     
    Dim instance As New CalcEvaluatorContext(source, arrayFormulaMode, baseRowIndex, baseColumnIndex, rowCount, columnCount)
    public CalcEvaluatorContext( 
       ICalcSource source,
       bool arrayFormulaMode,
       int baseRowIndex,
       int baseColumnIndex,
       int rowCount,
       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