[]
Creates a new FormulaSyntaxTree from a string.
public static FormulaSyntaxTree Parse(string text)
Public Shared Function Parse(text As String) As FormulaSyntaxTree
| Type | Name | Description |
|---|---|---|
| string | text | A string that contains formula. |
| Type | Description |
|---|---|
| FormulaSyntaxTree | A FormulaSyntaxTree populated from the string that contains formula. |
Creates a new FormulaSyntaxTree from a string.
public static FormulaSyntaxTree Parse(string text, ParseContext context)
Public Shared Function Parse(text As String, context As ParseContext) As FormulaSyntaxTree
| 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 |
|---|---|
| FormulaSyntaxTree | A FormulaSyntaxTree populated from the string that contains formula. |