LoadFromArrays Method

Office Open XML

Loads data from the collection of arrays of objects into the range, starting from the top-left cell.

Namespace:  OfficeOpenXml
Assembly:  EPPlus (in EPPlus.dll) Version: 3.0.0.1 (3.0.0.1)

Syntax

C#
public ExcelRangeBase LoadFromArrays(
	IEnumerable<Object[]> Data
)
Visual Basic (Declaration)
Public Function LoadFromArrays ( _
	Data As IEnumerable(Of Object()) _
) As ExcelRangeBase
Visual C++
public:
ExcelRangeBase^ LoadFromArrays(
	IEnumerable<array<Object^>^>^ Data
)

Parameters

Data
Type: System.Collections.Generic..::.IEnumerable<(Of <(array< Object >[]()[]>)>)
The data.

Return Value

[Missing <returns> documentation for "M:OfficeOpenXml.ExcelRangeBase.LoadFromArrays(System.Collections.Generic.IEnumerable{System.Object[]})"]

See Also