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

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

The rectangular array to import the data from.

The Table that the data was imported into.

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