In This Topic
Parses the chart formula.
Syntax
'Declaration
Public Shared Function ParseChartFormula( _
ByVal As String, _
ByVal As Boolean, _
ByVal As Hashtable, _
ByVal As ArrayList, _
ByRef As Boolean _
) As List(Of Expression)
'Usage
Dim formula As String
Dim useR1C1 As Boolean
Dim customNames As Hashtable
Dim dataModels As ArrayList
Dim referenceError As Boolean
Dim value As List(Of Expression)
value = SpreadChart.ParseChartFormula(formula, useR1C1, customNames, dataModels, referenceError)
public static List<Expression> ParseChartFormula(
string ,
bool ,
Hashtable ,
ArrayList ,
out bool
)
Parameters
- formula
- The formula.
- useR1C1
- if set to
true
[use r1 c1]. - customNames
- The custom names.
- dataModels
- The data models.
- referenceError
- if set to
true
[reference error].
See Also