# GrapeCity.Documents.Excel.Expressions.SyntaxNode

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="GrapeCity_Documents_Excel_Expressions_SyntaxNode" data-uid="GrapeCity.Documents.Excel.Expressions.SyntaxNode" class="text-break">SyntaxNode Class
</h1>
  <div class="markdown level0 summary"><p>Represents a node in the syntax tree. The node can be terminal or non-terminal.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><span class="xref">SyntaxNode</span></div>
      <div class="level2"><a class="xref" href="GrapeCity.Documents.Excel.Expressions.NonTerminalNode.html">NonTerminalNode</a></div>
      <div class="level2"><a class="xref" href="GrapeCity.Documents.Excel.Expressions.TerminalNode.html">TerminalNode</a></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.icloneable">ICloneable</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="GrapeCity.Documents.Excel.Expressions.html">GrapeCity.Documents.Excel.Expressions</a></h6>
  <h6><strong>Assembly</strong>: DS.Documents.Excel.dll</h6>
  <h5 id="GrapeCity_Documents_Excel_Expressions_SyntaxNode_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">public abstract class SyntaxNode : ICloneable</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">Public MustInherit Class SyntaxNode
    Implements ICloneable</code></pre>
  </div>
  <h3 id="constructors">Constructors
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="GrapeCity_Documents_Excel_Expressions_SyntaxNode__ctor" data-uid="GrapeCity.Documents.Excel.Expressions.SyntaxNode.#ctor">
          <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.-ctor.html#GrapeCity_Documents_Excel_Expressions_SyntaxNode__ctor">SyntaxNode()</a>
        </td>
        <td class="markdown level1 summary"></td>
      </tr>
    </tbody>
  </table>
  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="GrapeCity_Documents_Excel_Expressions_SyntaxNode_Children" data-uid="GrapeCity.Documents.Excel.Expressions.SyntaxNode.Children">
          <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.Children.html#GrapeCity_Documents_Excel_Expressions_SyntaxNode_Children">Children</a>
        </td>
        <td class="markdown level1 summary"><p>Gets children of a non-terminal node. Elements are not nullable.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="GrapeCity_Documents_Excel_Expressions_SyntaxNode_Clone" data-uid="GrapeCity.Documents.Excel.Expressions.SyntaxNode.Clone">
          <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.Clone.html#GrapeCity_Documents_Excel_Expressions_SyntaxNode_Clone">Clone()</a>
        </td>
        <td class="markdown level1 summary"><p>Clones the syntax node if the node is mutable.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Documents_Excel_Expressions_SyntaxNode_Equals_System_Object_" data-uid="GrapeCity.Documents.Excel.Expressions.SyntaxNode.Equals(System.Object)">
          <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.Equals.html#GrapeCity_Documents_Excel_Expressions_SyntaxNode_Equals_System_Object_">Equals(object)</a>
        </td>
        <td class="markdown level1 summary"><p>Checks whether the <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.html">SyntaxNode</a> equal to another.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Documents_Excel_Expressions_SyntaxNode_GetHashCode" data-uid="GrapeCity.Documents.Excel.Expressions.SyntaxNode.GetHashCode">
          <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.GetHashCode.html#GrapeCity_Documents_Excel_Expressions_SyntaxNode_GetHashCode">GetHashCode()</a>
        </td>
        <td class="markdown level1 summary"><p>This object doesn't support getting hash code, because all fields are mutable.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Documents_Excel_Expressions_SyntaxNode_Parse_System_String_" data-uid="GrapeCity.Documents.Excel.Expressions.SyntaxNode.Parse(System.String)">
          <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.Parse.html#GrapeCity_Documents_Excel_Expressions_SyntaxNode_Parse_System_String_">Parse(string)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads a <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.html">SyntaxNode</a> from a string that contains formula, optionally specifying context.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Documents_Excel_Expressions_SyntaxNode_Parse_System_String_GrapeCity_Documents_Excel_Expressions_ParseContext_" data-uid="GrapeCity.Documents.Excel.Expressions.SyntaxNode.Parse(System.String,GrapeCity.Documents.Excel.Expressions.ParseContext)">
          <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.Parse.html#GrapeCity_Documents_Excel_Expressions_SyntaxNode_Parse_System_String_GrapeCity_Documents_Excel_Expressions_ParseContext_">Parse(string, ParseContext)</a>
        </td>
        <td class="markdown level1 summary"><p>Loads a <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.html">SyntaxNode</a> from a string that contains formula, optionally specifying context.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Documents_Excel_Expressions_SyntaxNode_ToString" data-uid="GrapeCity.Documents.Excel.Expressions.SyntaxNode.ToString">
          <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.ToString.html#GrapeCity_Documents_Excel_Expressions_SyntaxNode_ToString">ToString()</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the formula text for this node, optionally specifying context.</p>
</td>
      </tr>
      <tr>
        <td id="GrapeCity_Documents_Excel_Expressions_SyntaxNode_ToString_GrapeCity_Documents_Excel_Expressions_UnParseContext_" data-uid="GrapeCity.Documents.Excel.Expressions.SyntaxNode.ToString(GrapeCity.Documents.Excel.Expressions.UnParseContext)">
          <a class="xref" href="GrapeCity.Documents.Excel.Expressions.SyntaxNode.ToString.html#GrapeCity_Documents_Excel_Expressions_SyntaxNode_ToString_GrapeCity_Documents_Excel_Expressions_UnParseContext_">ToString(UnParseContext)</a>
        </td>
        <td class="markdown level1 summary"><p>Returns the formula text for this node, optionally specifying context.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
