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

 public virtual Table ImportData(System.Object[][] data)
Public Overridable Function ImportData(ByVal data As Object()()) As Table

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

The Table that the data was imported into.

Table tbl = e.ImportData(dataArray);
Dim tbl As Table = e.ImportData(dataArray)