Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / SetErrorValue Method
Row index
Column index
Value to set for the specified cell


In This Topic
    SetErrorValue Method
    In This Topic
    Sets the value for the specified cell on this sheet.
    Syntax
    'Declaration
     
    
    Public Sub SetErrorValue( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal value As CalcError _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim row As Integer
    Dim column As Integer
    Dim value As CalcError
     
    instance.SetErrorValue(row, column, value)
    public void SetErrorValue( 
       int row,
       int column,
       CalcError value
    )

    Parameters

    row
    Row index
    column
    Column index
    value
    Value to set for the specified cell
    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