[]
Represents an error literal node in a formula syntax tree.
An ErrorNode stores a CalcError value that identifies a formula error.
public class ErrorNode : ConstNode, ICloneable
Public Class ErrorNode
Inherits ConstNode
Implements ICloneable
ErrorNode node = new ErrorNode(CalcError.Div0);
CalcError error = node.Value;
| Name | Description |
|---|---|
| ErrorNode(CalcError) | Creates a new This constructor initializes an error literal node in the formula syntax tree with the specified error value. |
| Name | Description |
|---|---|
| Value | Gets the error value stored in this node.
This property stores the CalcError that represents the error literal
associated with this |