[]
Loads a SyntaxNode from a string that contains formula, optionally specifying context.
public static SyntaxNode Parse(string text)
Public Shared Function Parse(text As String) As SyntaxNode
Type | Description |
---|---|
SyntaxNode | A SyntaxNode populated from the string that contains formula. |
Loads a SyntaxNode from a string that contains formula, optionally specifying context.
public static SyntaxNode Parse(string text, ParseContext context)
Public Shared Function Parse(text As String, context As ParseContext) As SyntaxNode
Type | Name | Description |
---|---|---|
string | text | A string that contains formula. |
ParseContext | context | A ParseContext that specifies base row, base column and R1C1 reference style. |
Type | Description |
---|---|
SyntaxNode | A SyntaxNode populated from the string that contains formula. |