[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.ErrorNode

ErrorNode Class

Represents an error literal node in a formula syntax tree.

An ErrorNode stores a CalcError value that identifies a formula error.

Inheritance
ErrorNode
Implements
Namespace: GrapeCity.Documents.Excel.Expressions
Assembly: DS.Documents.Excel.dll
Syntax
public class ErrorNode : ConstNode, ICloneable
Public Class ErrorNode
    Inherits ConstNode
    Implements ICloneable
Examples
ErrorNode node = new ErrorNode(CalcError.Div0);
CalcError error = node.Value;

Constructors

Name Description
ErrorNode(CalcError)

Creates a new ErrorNode from CalcError.

This constructor initializes an error literal node in the formula syntax tree with the specified error value.

Properties

Name Description
Value

Gets the error value stored in this node.

This property stores the CalcError that represents the error literal associated with this ErrorNode.