[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Expressions.ArrayNode.-ctor

ArrayNode Constructor

ArrayNode(object[,])

Creates a new ArrayNode from an array.

The specified array defines the literal values stored by this node. The value cannot be null. Supported element types are double, string, bool, and CalcError. Numeric values such as byte, short, int, long, and float are accepted, but they are normalized to double if the node is converted to text and then parsed again. Floating-point values cannot be NaN or infinity.

Declaration
public ArrayNode(object[,] elements)
Public Sub New(elements As Object(,))
Parameters
Type Name Description
object[,] elements

The array elements. The value cannot be null (Nothing).

Exceptions
Type Condition
ArgumentException

Thrown if elements is null, is empty, contains a null element, contains an unsupported element type, or contains NaN or infinite values.