[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.TextNode

TextNode Class

Represents a string literal node in a formula syntax tree.

Use this class to create or inspect constant text values in expression trees. A TextNode stores a non-null string value and inherits constant-node behavior from ConstNode.

Inheritance
TextNode
Implements
Namespace: GrapeCity.Documents.Excel.Expressions
Assembly: DS.Documents.Excel.dll
Syntax
public class TextNode : ConstNode, ICloneable
Public Class TextNode
    Inherits ConstNode
    Implements ICloneable
Examples
TextNode textNode = new TextNode("Total");
string text = textNode.Value;
textNode.Value = "Summary";
string updatedText = textNode.Value;

Constructors

Name Description
TextNode(string)

Creates a new TextNode from string.

Properties

Name Description
Value

Gets the text of this node.

Returns the string literal represented by this TextNode in the formula syntax tree. The returned value is never null.