Spread Windows Forms 17
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / IValue Interface / CreateValuesArray Method
An integer value indicates the row count of values array.
An integer value indicates the column count of values array.


In This Topic
    CreateValuesArray Method
    In This Topic
    Creates a new values array.
    Syntax
    'Declaration
     
    
    Function CreateValuesArray( _
       ByVal rowCount As Integer, _
       ByVal columnCount As Integer _
    ) As IValuesArray
    'Usage
     
    
    Dim instance As IValue
    Dim rowCount As Integer
    Dim columnCount As Integer
    Dim value As IValuesArray
     
    value = instance.CreateValuesArray(rowCount, columnCount)
    IValuesArray CreateValuesArray( 
       int rowCount,
       int columnCount
    )

    Parameters

    rowCount
    An integer value indicates the row count of values array.
    columnCount
    An integer value indicates the column count of values array.

    Return Value

    A IValuesArray value represents the values array value.
    See Also