Spread Windows Forms 17
GrapeCity.CalcEngine Assembly / GrapeCity.CalcEngine Namespace / FormulaEngine Class / TryParseR1C1Reference(String,RangeReference) Method
A string containing a range reference to convert.
A RangeReference value represents the parsed range reference.


In This Topic
    TryParseR1C1Reference(String,RangeReference) Method
    In This Topic
    Converts the string representation of a range reference in R1C1 format its RangeReference equivalent. A return value indicates whether the conversion succeeded or failed.
    Syntax
    'Declaration
     
    
    Public Shared Function TryParseR1C1Reference( _
       ByVal ref As String, _
       ByRef rangeRef As RangeReference _
    ) As Boolean
    'Usage
     
    
    Dim ref As String
    Dim rangeRef As RangeReference
    Dim value As Boolean
     
    value = FormulaEngine.TryParseR1C1Reference(ref, rangeRef)
    public static bool TryParseR1C1Reference( 
       string ref,
       ref RangeReference rangeRef
    )

    Parameters

    ref
    A string containing a range reference to convert.
    rangeRef
    A RangeReference value represents the parsed range reference.

    Return Value

    true if s was converted successfully; otherwise, false.
    See Also