IReadOnlyList<IDataSeries> Table.Import(String dataURI, ImportFormat format, ImportSettingsBase settings)

Import data from the provided resource into the table as specified by and . All existing data will be overwritten upon import. If “settings” is `None` then the default settings class, as provided by ImportSettingsHelper.GetSettingsForFormat(), will be used. All imported data in textual/string format will depend on the .NET `double.TryParse()` method to convert items into a suitable value for variable storage in the table. An “undefined” value (as specified in the `IDataTable` API spec) will be used if a suitable double representation cannot be parsed.

Parameters

  • dataURI
    Type: String
    The URI of the data source to import.
  • format
    The format of the data source.
  • settings
    The settings for how to import.

Return Value

Type: IReadOnlyList<IDataSeries>
A collection of the newly created columns.