Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread.Model Namespace / Parser Class / Parse Method / Parse(String,Int32,Int32,Boolean,Hashtable,Hashtable,ArrayList,Boolean,Hashtable,Boolean) Method
String to convert
Base row position
Base column position
Whether to use R1C1 notation
Table of custom functions
Table of custom names
Array list of data models
Indicates if the parsed formula is for a chart data source.
Table of table data
Indicates if the parsed formula is changed when parsing


In This Topic
    Parse(String,Int32,Int32,Boolean,Hashtable,Hashtable,ArrayList,Boolean,Hashtable,Boolean) Method
    In This Topic
    Converts the string to an Expression object.
    Syntax
    'Declaration
     
    
    Public Overloads Function Parse( _
       ByVal text As String, _
       ByVal baseRow As Integer, _
       ByVal baseColumn As Integer, _
       ByVal useR1C1 As Boolean, _
       ByVal customFunctions As Hashtable, _
       ByVal customNames As Hashtable, _
       ByVal dataModels As ArrayList, _
       ByVal isChartDataSource As Boolean, _
       ByVal tables As Hashtable, _
       ByRef isChanged As Boolean _
    ) As Expression
    'Usage
     
    
    Dim instance As Parser
    Dim text As String
    Dim baseRow As Integer
    Dim baseColumn As Integer
    Dim useR1C1 As Boolean
    Dim customFunctions As Hashtable
    Dim customNames As Hashtable
    Dim dataModels As ArrayList
    Dim isChartDataSource As Boolean
    Dim tables As Hashtable
    Dim isChanged As Boolean
    Dim value As Expression
     
    value = instance.Parse(text, baseRow, baseColumn, useR1C1, customFunctions, customNames, dataModels, isChartDataSource, tables, isChanged)

    Parameters

    text
    String to convert
    baseRow
    Base row position
    baseColumn
    Base column position
    useR1C1
    Whether to use R1C1 notation
    customFunctions
    Table of custom functions
    customNames
    Table of custom names
    dataModels
    Array list of data models
    isChartDataSource
    Indicates if the parsed formula is for a chart data source.
    tables
    Table of table data
    isChanged
    Indicates if the parsed formula is changed when parsing
    See Also