Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet.UI Namespace / UIHelper Class / ParseReference Method
The current worksheet.
The cell range address.
A boolean value indicating whether the current reference style is A1.


In This Topic
    ParseReference Method
    In This Topic
    Parses the text that reprsents a cell range address.
    Syntax
    'Declaration
     
    
    Public Shared Function ParseReference( _
       ByVal worksheet As IWorksheet, _
       ByVal baseRow As Integer, _
       ByVal baseColumn As Integer, _
       ByVal reference As String, _
       ByVal isA1Reference As Boolean _
    ) As WorksheetReference
    'Usage
     
    
    Dim worksheet As IWorksheet
    Dim baseRow As Integer
    Dim baseColumn As Integer
    Dim reference As String
    Dim isA1Reference As Boolean
    Dim value As WorksheetReference
     
    value = UIHelper.ParseReference(worksheet, baseRow, baseColumn, reference, isA1Reference)

    Parameters

    worksheet
    The current worksheet.
    baseRow
    baseColumn
    reference
    The cell range address.
    isA1Reference
    A boolean value indicating whether the current reference style is A1.

    Return Value

    A GrapeCity.Spreadsheet.WorksheetReference value represents the cell range address.
    See Also