Imports data from a into a Table at the point of this Element in the document. Also accepts a DataImportProperties object that contains the options for importing.

 public Table ImportData(System.Data.DataView data, DataImportProperties props)
Public Function ImportData(ByVal data As System.Data.DataView, ByVal props As DataImportProperties) As Table

Contains the data to be imported.

Import properties for this data import, including max rows, max columns, column filter, etc.

The Table that the data was imported into.

Table tbl = e.ImportData(dv, importProps);
Dim tbl As Table = e.ImportData(dv, importProps)