[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.ParenthesisNode

ParenthesisNode Class

Represents a parenthesized expression in a formula syntax tree.

The node contains the expression inside the parentheses through the inherited child node collection.

Inheritance
ParenthesisNode
Implements
Namespace: GrapeCity.Documents.Excel.Expressions
Assembly: DS.Documents.Excel.dll
Syntax
public class ParenthesisNode : NonTerminalNode, ICloneable
Public Class ParenthesisNode
    Inherits NonTerminalNode
    Implements ICloneable
Examples
ParenthesisNode node = new ParenthesisNode();
node.Children.Add(new NumberNode(100));
FormulaSyntaxTree tree = new FormulaSyntaxTree();
tree.Root = node;
string formulaText = tree.ToString();

Constructors

Name Description
ParenthesisNode()

Creates a new ParenthesisNode.