Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / SetValue Method / SetValue(Int32,Int32,Object,Boolean) Method
Row index
Column index
Value to set for the specified cell
Perform value validation


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

    Parameters

    row
    Row index
    column
    Column index
    value
    Value to set for the specified cell
    validate
    Perform value validation
    Exceptions
    ExceptionDescription
    Specified row index is out of range; must be between 0 and the total number of rows
    Specified column index is out of range; must be between 0 and the total number of columns
    See Also