Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / SetArray Method
Row index
Column index
Array from which to set values


In This Topic
    SetArray Method (SheetView)
    In This Topic
    Sets the values in the specified two-dimensional array of objects into the specified range of cells on this sheet.
    Syntax
    'Declaration
     
    
    Public Sub SetArray( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal value(,) As Object _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim column As Integer
    Dim value() As Object
     
    instance.SetArray(row, column, value)
    public void SetArray( 
       int row,
       int column,
       object[,] value
    )

    Parameters

    row
    Row index
    column
    Column index
    value
    Array from which to set values
    See Also