Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / IArraySupport Interface / SetArray Method
Starting model row index
Starting model column index
Two-dimensional object array[row,column] that contains tabular data


In This Topic
    SetArray Method (IArraySupport)
    In This Topic
    Sets an object array into a specified range of cells.
    Syntax
    'Declaration
     
    
    Sub SetArray( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal value(,) As Object _
    ) 
    'Usage
     
    
    Dim instance As IArraySupport
    Dim row As Integer
    Dim column As Integer
    Dim value() As Object
     
    instance.SetArray(row, column, value)
    void SetArray( 
       int row,
       int column,
       object[,] value
    )

    Parameters

    row
    Starting model row index
    column
    Starting model column index
    value
    Two-dimensional object array[row,column] that contains tabular data
    See Also