Table of Contents

Class QuotedSheetNode

Namespace
OpenLanguage.SpreadsheetML.Formula.Ast
Assembly
OpenLanguage.dll
public class QuotedSheetNode : ExpressionNode
Inheritance
QuotedSheetNode
Inherited Members

Constructors

QuotedSheetNode(ExpressionNode, string, string, List<Node>?, List<Node>?)

public QuotedSheetNode(ExpressionNode sheet, string openQuote, string closeQuote, List<Node>? leadingWs = null, List<Node>? trailingWs = null)

Parameters

sheet ExpressionNode
openQuote string
closeQuote string
leadingWs List<Node>
trailingWs List<Node>

Properties

CloseQuote

public string CloseQuote { get; set; }

Property Value

string

OpenQuote

public string OpenQuote { get; set; }

Property Value

string

Precedence

Gets the operator precedence for this expression node.

public override int Precedence { get; }

Property Value

int

Sheet

public ExpressionNode Sheet { get; set; }

Property Value

ExpressionNode

Methods

Children<O>()

public override IEnumerable<O> Children<O>() where O : Node

Returns

IEnumerable<O>

Type Parameters

O

ReplaceChild(int, Node)

public override Node? ReplaceChild(int index, Node replacement)

Parameters

index int
replacement Node

Returns

Node

ToRawString()

Renders the core content of the node without its own leading/trailing whitespace.

public override string ToRawString()

Returns

string

The raw string representation of this node's specific content.