Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / SetValue Method / SetValue(Int32,Int32,SheetArea,Object,Boolean) Method
The row index.
The column index.
The sheet area.
The value to set for the specified cell.
A CellPropertyChanged event occurs if this value is true.


In This Topic
    SetValue(Int32,Int32,SheetArea,Object,Boolean) 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 area As SheetArea, _
       ByVal value As Object, _
       ByVal raiseCellPropertyChanged As Boolean _
    ) 
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim area As SheetArea
    Dim value As Object
    Dim raiseCellPropertyChanged As Boolean
     
    instance.SetValue(row, column, area, value, raiseCellPropertyChanged)
    public void SetValue( 
       int row,
       int column,
       SheetArea area,
       object value,
       bool raiseCellPropertyChanged
    )

    Parameters

    row
    The row index.
    column
    The column index.
    area
    The sheet area.
    value
    The value to set for the specified cell.
    raiseCellPropertyChanged
    A CellPropertyChanged event occurs if this value is true.
    See Also