IDwDataExporter<TDwo> Interface
.NET Standard 2.x
Exports data from the DataStore buffer in the specified DataFormat
.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Syntax
public interface IDwDataExporter
Methods
Name | Return Type | Description |
---|---|---|
Export(bool colheading = true) | string | Exports data from the DataStore primary buffer in the specified DataFormat , and specifies whether to include columns heading. |
Export(int startRow, int endRow, bool colheading = true) | string | Exports data from the DataStore primary buffer in the specified DataFormat , and specifies the start and end positions of the rows, and whether to include columns heading. |
Export(int startRow, int endRow, int startColumn, int endColumn, bool colheading = true) | string | Exports data from the DataStore primary buffer in the specified DataFormat , and specifies the start and end positions of the rows and columns, and whether to include columns heading. |
Export(MappingMethod importMapping) | string | Exports data from the DataStore primary buffer in the specified DataFormat , and specifies how to map columns. |
Export(bool changedOnly, MappingMethod importMapping) | string | Exports data from the DataStore primary buffer in the specified DataFormat , and specifies whether to export only the changed rows, and how to map columns. |
Export(DwBuffer dwbuffer, bool changedOnly, MappingMethod importMapping) | string | Exports data from the specified buffer of the DataStore in the specified DataFormat , and specifies whether to export only the changed rows, and how to map columns. |
Export(bool primaryData, bool filterData, bool deleteData, bool dwcdata, MappingMethod importMapping) | string | Exports data(DataWindowChild ) from the specified buffer of the DataStore in the specified DataFormat , and how to map columns. |
Export(DwBuffer dwbuffer, MappingMethod importMapping) | string | Exports data from the specified buffer of the DataStore in the specified DataFormat , and how to map columns. |
Export(DwBuffer dwbuffer, int startRow, MappingMethod importMapping) | string | Exports data from the specified buffer of the DataStore in the specified DataFormat , and specifies the start position of the rows, and how to map columns. |
Export(DwBuffer dwbuffer, int startRow, int endRow, MappingMethod importMapping) | string | Exports data from the specified buffer of the DataStore in the specified DataFormat , and specifies the start and end positions of the rows, and how to map columns. |
Export(DwBuffer dwbuffer, int startRow, int endRow, int startColumn, MappingMethod importMapping) | string | Exports data from the specified buffer of the DataStore in the specified DataFormat , and specifies the start and end positions of the rows and the start position of the columns, and how to map columns. |
Export(DwBuffer dwbuffer, int startRow, int endRow, int startColumn, int endColumn, MappingMethod importMapping) | string | Exports data from the specified buffer of the DataStore in the specified DataFormat , and specifies the start and end positions of the rows and columns, and how to map columns. |
ExportPlain() | string | Exports entity class data from the DataStore primary buffer in the specified DataFormat . |
ExportPlain(bool changedOnly) | string | Exports entity class data from the DataStore primary buffer in the specified DataFormat . |
ExportPlain(DwBuffer dwbuffer, bool changedOnly) | string | Exports entity class data from the specified buffer of the DataStore in the specified DataFormat , and specifies whether to export only the changed rows. |
ExportPlain(bool primaryData, bool filterData, bool deleteData, bool dwcdata) | string | Exports entity class data(DataWindowChild ) from the specified buffer of the DataStore in the specified DataFormat . |
ExportPlain(DwBuffer dwbuffer) | string | Exports entity class data from the specified buffer of the DataStore in the specified DataFormat . |
ExportPlain(DwBuffer dwbuffer, int startRow) | string | Exports entity class data from the specified buffer of the DataStore in the specified DataFormat , and specifies the start position of the rows. |
ExportPlain(DwBuffer dwbuffer, int startRow, int endRow) | string | Exports entity class data from the specified buffer of the DataStore in the specified DataFormat , and specifies the start and end positions of the rows. |
ExportPlain(DwBuffer dwbuffer, int startRow, int endRow, int startColumn) | string | Exports entity class data from the specified buffer of the DataStore in the specified DataFormat , and specifies the start and end positions of the rows and the start position of the columns. |
ExportPlain(DwBuffer dwbuffer, int startRow, int endRow, int startColumn, int endColumn) | string | Exports entity class data from the specified buffer of the DataStore in the specified DataFormat , and specifies the start and end positions of the rows and columns. |
ExportRow(int row, DwBuffer dwBuffer = DwBuffer.Primary) | string | Export a row data from the specified buffer of the DataStore in the specified DataFormat . |