Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.Data Namespace / DataManager Class / IsValidValue Method
Error message if value is not valid


In This Topic
    IsValidValue Method
    In This Topic
    Check if the value is valid for data manager.
    Syntax
    'Declaration
     
    
    Public Function IsValidValue( _
       ByVal row As Integer, _
       ByVal column As Integer, _
       ByVal value As Object, _
       ByRef invalidMessage As String _
    ) As Boolean
    'Usage
     
    
    Dim instance As DataManager
    Dim row As Integer
    Dim column As Integer
    Dim value As Object
    Dim invalidMessage As String
    Dim value As Boolean
     
    value = instance.IsValidValue(row, column, value, invalidMessage)
    public bool IsValidValue( 
       int row,
       int column,
       object value,
       out string invalidMessage
    )

    Parameters

    row
    column
    value
    invalidMessage
    Error message if value is not valid
    See Also