[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.ReferenceNode

ReferenceNode Class

Represents a reference node in the formula syntax tree.

A ReferenceNode is a TerminalNode that wraps a Reference object so a cell, range, worksheet, or workbook reference can be represented as a terminal expression node.

Inheritance
ReferenceNode
Implements
Namespace: GrapeCity.Documents.Excel.Expressions
Assembly: DS.Documents.Excel.dll
Syntax
public class ReferenceNode : TerminalNode, ICloneable
Public Class ReferenceNode
    Inherits TerminalNode
    Implements ICloneable
Examples
Reference reference = new Reference();
reference.WorksheetName = "Sheet1";
reference.Row = 0;
reference.Column = 0;
ReferenceNode node = new ReferenceNode(reference);

Constructors

Name Description
ReferenceNode(Reference)

Creates a new ReferenceNode from a Reference.

A ReferenceNode stores a formula reference as a terminal node in the syntax tree.

Properties

Name Description
Reference

Gets or sets the reference of this node.