[]
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.
public class TextNode : ConstNode, ICloneable
Public Class TextNode
Inherits ConstNode
Implements ICloneable
TextNode textNode = new TextNode("Total");
string text = textNode.Value;
textNode.Value = "Summary";
string updatedText = textNode.Value;
| Name | Description |
|---|---|
| TextNode(string) |
| 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 |