Imports data from an ADO.NET to the specified Area. The new data will overwrite values and formulas in the target worksheet cells, but existing formatting will be preserved.

 public Area ImportData(System.Data.DataTable data, DataImportProperties props)
Public Function ImportData(ByVal data As System.Data.DataTable, ByVal props As DataImportProperties) As Area

The DataTable to import.

A DataImportProperties object that contains a set of properties that will determine the behavior of the data import.

An Area object representing the set of cells populated with the imported values.


DataImportProperties importProps = wb.CreateDataImportProperties();
importProps.Truncate = true;
Area importedArea = a.ImportData(dt, importProps);

Dim importProps As DataImportProperties = wb.CreateDataImportProperties()
importProps.Truncate = True
Area importedArea = a.ImportData(dt, importProps)