IDwDataImporter<TDwo> Interface
.NET Standard 2.x
Imports data into the DataStore buffer in the specified DataFormat.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Syntax
public interface IDwDataImporter
Methods
| Name | Return Type | Description |
|---|---|---|
| Import(string text, int startRow, int endRow = -1) | string | 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) | string | 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) | string | Imports data into the DataStore buffer with the specified DataFormat. |
| Import(string text, DwBuffer dwbuffer) | string | Imports data into the DataStore specified buffer with the specified DataFormat. |
| Import(string text, DwBuffer dwbuffer, int startRow) | string | 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) | string | 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) | string | 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) | string | 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) | string | 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. |
| ImportByKey(string text) | string | Imports data into the DataStore buffer with the specified DataFormat based on the key name. |
| ImportByKey(string text, DwBuffer dwbuffer) | string | Imports data into the specified buffer of DataStore with the specified DataFormat based on the key name. |
| ImportByKey(string text, DwBuffer dwbuffer, int startRow) | string | Imports data into the specified buffer of DataStore with the specified DataFormat based on the key name, and specifies the start position of the row. |
| ImportByKey(string text, DwBuffer dwbuffer, int startRow, int endRow) | string | Imports data into the specified buffer of DataStore with the specified DataFormat based on the key name, and specifies the start and end positions of the rows. |
| ImportRow(string text, int row, DwBuffer dwBuffer = DwBuffer.Primary) | string | Import one row data into the specified buffer of DataStore with the specified DataFormat based on the key name. |