[]
Represents a numeric literal node in a formula syntax tree.
This node stores a single double value and can be read or updated after creation.
See ConstNode for other constant node types.
public class NumberNode : ConstNode, ICloneable
Public Class NumberNode
Inherits ConstNode
Implements ICloneable
NumberNode numberNode = new NumberNode(12.5);
double value = numberNode.Value;
| Name | Description |
|---|---|
| NumberNode(double) | Creates a This constructor initializes a numeric literal node in a formula syntax tree with the specified value. |
| Name | Description |
|---|---|
| Value | Gets the numeric value stored in this node. Returns the |