Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

Imports the data from a 2-dimensional array into a Table at the point of the current element in the document.

Signature
C#
C#
 public virtual Table ImportData(System.Object[][] data)
Signature
vb.net
vb.net
Public Overridable Function ImportData(ByVal data As Object()()) As Table
Parameters
Param
data
data

A 2-dimensional array from which to import the data from.

Returns

The Table that the data was imported into.

Example
Code Block
csharp
csharp
titleC#
Table tbl = e.ImportData(dataArray);
Code Block
vb.net
vb.net
titlevb.net
Dim tbl As Table = e.ImportData(dataArray)