IDataStore.ExportString Method
.NET Standard 2.x | Current Version (1.0.1) 
Exports all of the data rows from the primary buffer of the DataStore to a string. The column name is exported by default.
Namespace: PowerBuilder.Data
Assembly: PowerBuilder.Data.dll
Overloads
| Method | Description |
|---|---|
| ExportString(bool colheading = true) | Exports all of the data rows from the primary buffer of the DataStore to a string. The column name is exported by default. |
| ExportString(int startRow, int endRow, bool colheading = true) | Exports the rows (from the specified starting position to the ending position) from the primary buffer of the DataStore to a string. The column name is exported by default. |
| ExportString(int startRow, int endRow, short startColumn, short endColumn, bool colheading = true) | Exports the rows (from the specified starting position to the ending position) and the columns (from the specified starting position to the ending position) from the primary buffer of the DataStore to a string. The column name is exported by default. |