Spread WPF 17
GrapeCity.Windows.SpreadSheet.Data Namespace / Worksheet Class / IsValid Method
The row.
The column.
The value.


In This Topic
    IsValid Method (Worksheet)
    In This Topic
    Determines whether the specified cell value is valid.
    Syntax
    'Declaration
     
    Public Function IsValid( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal value As Object _
    ) As Boolean
    'Usage
     
    Dim instance As Worksheet
    Dim row As Integer
    Dim column As Integer
    Dim value As Object
    Dim value As Boolean
     
    value = instance.IsValid(row, column, value)
    public bool IsValid( 
       int row,
       int column,
       object value
    )

    Parameters

    row
    The row.
    column
    The column.
    value
    The value.

    Return Value

    true if the specified cell value is valid; otherwise, false.
    See Also