[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.NameNode

Class NameNode

Namespace
GrapeCity.Documents.Excel.Expressions
Assembly
GcDocs.Excel.dll

Represents a name node in the syntax tree.

public class NameNode : TerminalNode, ICloneable
Inheritance
object
NameNode
Implements
System.ICloneable
Inherited Members
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetType()
object.MemberwiseClone()

Constructors

NameNode(string, WorkbookReference, string, string)

Creates a new NameNode from a range of sheets of the specified workbook.

public NameNode(string name, WorkbookReference workbook, string worksheetName, string lastWorksheetName)

Parameters

name string

The short name.

workbook WorkbookReference

The workbook id.

worksheetName string

The name of start worksheet.

lastWorksheetName string

The name of end worksheet.

NameNode(string, string, string)

Creates a new NameNode from a range of sheets.

public NameNode(string name, string worksheetName, string lastWorksheetName)

Parameters

name string

The short name.

worksheetName string

The name of start worksheet.

lastWorksheetName string

The name of end worksheet.

NameNode(string)

Creates a new NameNode from string.

public NameNode(string name)

Parameters

name string

The short name.

Properties

LastWorksheetName

If the name represents a range of worksheets, represents the worksheet at the end of the range.

public string LastWorksheetName { get; set; }

Property Value

string

Name

The short name.

public string Name { get; set; }

Property Value

string

Workbook

The external workbook reference.

public WorkbookReference Workbook { get; set; }

Property Value

WorkbookReference

WorksheetName

The worksheet of the name.

public string WorksheetName { get; set; }

Property Value

string