IDwDataImporter.Import Method
.NET Standard 2.x
Import data into the DataStore buffer in the specified DataFormat
.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Overloads
Method | Description |
---|---|
Import(string text, int startRow, int endRow = -1) | Imports data into the DataStore buffer with the specified DataFormat , and specifies the start and end positions. Data outside this range will not be imported into the DataStore. |
Import(string text, int startRow, int endRow, int startColumn, int endColumn) | Imports data into the DataStore buffer with the specified DataFormat , and specifies the start and end positions of the rows and columns. Data outside this range will not be imported into the DataStore. |
Import(string text) | Imports data into the DataStore buffer with the specified DataFormat . |
Import(string text, DwBuffer dwbuffer) | Imports data into the DataStore specified buffer with the specified DataFormat . |
Import(string text, DwBuffer dwbuffer, int startRow) | Imports data into the DataStore specified buffer with the specified DataFormat , and specifies the start position of the row. |
Import(string text, DwBuffer dwbuffer, int startRow, int endRow) | Imports data into the DataStore specified buffer with the specified DataFormat , and specifies the start and end positions of the rows. |
Import(string text, DwBuffer dwbuffer, int startRow, int endRow, int startColumn) | Imports data into the DataStore specified buffer with the specified DataFormat , and specifies the start and end positions of the rows and the start position of the columns. |
Import(string text, DwBuffer dwbuffer, int startRow, int endRow, int startColumn, int endColumn) | Imports data into the DataStore specified buffer with the specified DataFormat , and specifies the start and end positions of the rows and columns. |
Import(string text, DwBuffer dwbuffer, int startRow, int endRow, int startColumn, int endColumn, int dwStartColumn) | Imports data into the DataStore specified buffer with the specified DataFormat , and specifies the start and end positions of the rows and columns, and specifies the start position of the DataWindowChild column. |