VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Office.Spreadsheet.Document Namespace / CellReferences Class / TryParse(String,CellReferences) Method
Syntax Requirements SeeAlso
In This Topic
    TryParse(String,CellReferences) Method (CellReferences)
    In This Topic
    Tries to parse cell references from the specified string in A1 or R1C1 format.
    Syntax
    'Declaration
    
    Public Shared Function TryParse( _
    ByVal str
    The string in A1 or R1C1 format.
    As System.String, _
    ByRef result
    The result.
    As CellReferences _
    ) As Boolean
    public static bool TryParse(
    System.String str,
    out CellReferences result
    )
    public: static bool TryParse(
    System.String str,
    [PARAMFLAG::Out] CellReferences* result
    )
    public:
    static bool TryParse(
    System.String str,
    [Out] CellReferences^ result
    )

    Parameters

    str
    The string in A1 or R1C1 format.
    result
    The result.

    Return Value

    True if cell references is parsed successfully; otherwise, false.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also