Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / SetValue Method / SetValue(Int32,Int32,Object) Method
The row index.
The column index.
The value to set for the specified cell.


In This Topic
    SetValue(Int32,Int32,Object) Method
    In This Topic
    Sets the value for the specified cell in the specified sheet area.
    Syntax
    'Declaration
     
    Public Overloads Sub SetValue( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal value As Object _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As Object
     
    instance.SetValue(row, column, value)
    public void SetValue( 
       int row,
       int column,
       object value
    )

    Parameters

    row
    The row index.
    column
    The column index.
    value
    The value to set for the specified cell.
    See Also