[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.NumberNode

NumberNode Class

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.

Inheritance
NumberNode
Implements
Namespace: GrapeCity.Documents.Excel.Expressions
Assembly: DS.Documents.Excel.dll
Syntax
public class NumberNode : ConstNode, ICloneable
Public Class NumberNode
    Inherits ConstNode
    Implements ICloneable
Examples
NumberNode numberNode = new NumberNode(12.5);
double value = numberNode.Value;

Constructors

Name Description
NumberNode(double)

Creates a NumberNode from double value.

This constructor initializes a numeric literal node in a formula syntax tree with the specified value.

Properties

Name Description
Value

Gets the numeric value stored in this node.

Returns the double value represented by this NumberNode in the formula syntax tree.