Spread Windows Forms 15.0
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / Function Class / GetFormulaArrayDimensions Method
The evaluation context.
The argument of the function.
The row count of the returned array.
The column count of the returned array.


In This Topic
    GetFormulaArrayDimensions Method
    In This Topic
    Calculates the dimensions of the specified argument.
    Syntax
    'Declaration
     
    
    Protected Sub GetFormulaArrayDimensions( _
       ByVal context As IEvaluationContext, _
       ByVal value As IValue, _
       ByRef rowCount As Integer, _
       ByRef columnCount As Integer _
    ) 
    'Usage
     
    
    Dim instance As Function
    Dim context As IEvaluationContext
    Dim value As IValue
    Dim rowCount As Integer
    Dim columnCount As Integer
     
    instance.GetFormulaArrayDimensions(context, value, rowCount, columnCount)
    protected void GetFormulaArrayDimensions( 
       IEvaluationContext context,
       IValue value,
       out int rowCount,
       out int columnCount
    )

    Parameters

    context
    The evaluation context.
    value
    The argument of the function.
    rowCount
    The row count of the returned array.
    columnCount
    The column count of the returned array.
    See Also