Table of Contents

Class SheetRangeNode

Namespace
OpenLanguage.SpreadsheetML.Formula.Ast
Assembly
OpenLanguage.dll

Represents a range of sheets, e.g., "Sheet1:Sheet3".

public class SheetRangeNode : ExpressionNode
Inheritance
SheetRangeNode
Inherited Members

Constructors

SheetRangeNode(ExpressionNode, ColonNode, ExpressionNode, List<Node>?, List<Node>?)

public SheetRangeNode(ExpressionNode startSheet, ColonNode colon, ExpressionNode endSheet, List<Node>? leadingWs = null, List<Node>? trailingWs = null)

Parameters

startSheet ExpressionNode
colon ColonNode
endSheet ExpressionNode
leadingWs List<Node>
trailingWs List<Node>

Properties

ColonNode

public ColonNode ColonNode { get; set; }

Property Value

ColonNode

EndSheetName

public ExpressionNode EndSheetName { get; set; }

Property Value

ExpressionNode

Precedence

Gets the operator precedence for this expression node.

public override int Precedence { get; }

Property Value

int

StartSheetName

public ExpressionNode StartSheetName { 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.