[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.ArrayNode

Class ArrayNode

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

Represents an array literal in the syntax tree.

public class ArrayNode : ConstNode, ICloneable
Inheritance
ArrayNode
Implements
Inherited Members

Constructors

ArrayNode(object[,])

Creates a new ArrayNode from array.

public ArrayNode(object[,] elements)

Parameters

elements object[,]

Array elements. The value can't be null (Nothing).

Properties

Elements

Array elements of this node. The value can't be null (Nothing).

public object[,] Elements { get; set; }

Property Value

object[,]

Remarks

Supported types:

double, string, bool, CalcError.

The following types will be normalized to double if you convert the ArrayNode to string and then convert it back:

byte, short, int, long, sbyte, ushort, uint, ulong, float, decimal.

Floating-point types can't be NaN or infinity.