Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / CellRange Class / TryParse Method
String to be parsed
Cell range represented by the string. If the return value is false then result is set to null.


In This Topic
    TryParse Method (CellRange)
    In This Topic
    Converts a string to a cell range.
    Syntax
    'Declaration
     
    
    Public Shared Function TryParse( _
       ByVal s As String, _
       ByRef result As CellRange _
    ) As Boolean
    'Usage
     
    
    Dim s As String
    Dim result As CellRange
    Dim value As Boolean
     
    value = CellRange.TryParse(s, result)
    public static bool TryParse( 
       string s,
       out CellRange result
    )

    Parameters

    s
    String to be parsed
    result
    Cell range represented by the string. If the return value is false then result is set to null.
    See Also