IDataExporter Interface
.NET Standard 2.x
Exports data from the DataStore primary buffer in the specified DataFormat
.
Namespace: SnapObjects.Data
Assembly: SnapObjects.Data.dll
Syntax
public interface IDataExporter
Methods
Name | Return Type | Description |
---|---|---|
Export() | string | Exports data from the DataStore primary buffer in the specified DataFormat . |
Export(bool changedOnly) | string | Exports data from the DataStore primary buffer in the specified DataFormat , and specifies whether to changed only rows. |
Export(int startRow) | string | Exports data from the DataStore primary buffer in the specified DataFormat , and specifies the starting position of the rows. |
Export(int startRow, int endRow) | string | Exports data from the DataStore primary buffer in the specified DataFormat , and specifies the start and end positions of the rows. |
Export(int startRow, int endRow, int startColumn) | string | Exports data from the DataStore primary buffer in the specified DataFormat , and specifies the start and end positions of the rows and the starting position of the columns. |
Export(int startRow, int endRow, int startColumn, int endColumn) | string | Exports data from the DataStore primary buffer in the specified DataFormat , and specifies the start and end positions of the rows and 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 , and specifies whether to changed only rows. |
ExportPlain(int startRow) | string | Exports entity class data from the DataStore primary buffer in the specified DataFormat , and specifies the starting position of the rows. |
ExportPlain(int startRow, int endRow)) | string | Exports entity class data from the DataStore primary buffer in the specified DataFormat , and specifies the start and end positions of the rows. |
ExportPlain(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 starting position of the columns. |
ExportPlain(int startRow, int endRow, int startColumn, int endColumn) | string | Exports entity class data from the DataStore primary buffer in the specified DataFormat , and specifies the start and end positions of the rows and columns. |