Spread Windows Forms 12.0 Product Documentation
Parse(String,Expression) Method


GrapeCity.CalcEngine Assembly > GrapeCity.CalcEngine Namespace > FormulaEngine Class : Parse(String,Expression) Method
A string indicates the formula text.
The parsed expression.
Parses the specified formula text to expression.
Syntax
'Declaration
 
Public Function Parse( _
   ByVal formulaText As String, _
   ByRef parsedExpression As Expression _
) As Boolean
'Usage
 
Dim instance As FormulaEngine
Dim formulaText As String
Dim parsedExpression As Expression
Dim value As Boolean
 
value = instance.Parse(formulaText, parsedExpression)
public bool Parse( 
   string formulaText,
   out Expression parsedExpression
)

Parameters

formulaText
A string indicates the formula text.
parsedExpression
The parsed expression.

Return Value

true if the formula can be parsed to the instance, false otherwise.
See Also

Reference

FormulaEngine Class
FormulaEngine Members
Expression Class