Description
This class is used to control settings for importing data into a table or table cell.
C#
vb.net
Remarks
To create a DataImportProperties object, use Document.CreateDataImportProperties.
To actually import data, use Element.ImportData and pass in a DataImportProperties
object along with the data to import.
Examples
C#
vb.net
Properties
Name |
Description |
---|---|
Sets or returns a boolean representing whether or not the table that is automatically created for the imported data will automatically be sized to fit the data being imported. | |
Sets or returns an AutoFormatter that specifies how the imported data should be formatted in the table. | |
Sets or returns an array of column indexes specifying the columns to import. | |
Sets or returns an array of columns names specifying the columns to import. If the length of the specified array is greater than MaxColumns, or exceeds the size of the target area, the columns will be added in the order in which they appear in the array. | |
Sets or returns an int that represents the maximum number of columns to be imported. If more columns than this are in the data source, the extra ones will be ignored. |
|
Returns or set an int that represents the maximum number of rows to be imported. If more rows than this are in the data source, the extra ones will be ignored. |
|
Sets or returns a boolean that represents whether to use the column names from the data source when importing the data. This property is set to true by default. |