cxExportVGToCSV(string,TcxCustomVerticalGrid,Boolean,Char,Integer,string,TObject,TEncoding) Method
Exports content of a vertical grid control to a file in CSV (comma-separated values) format.
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
AFile |
string | The absolute or relative path to the resulting CSV file. You can omit the file name extension because it is automatically updated from the |
AVertical |
Tcx |
The source vertical grid control. |
AExpand | Boolean | Optional. If |
ASeparator | Char | Optional. Specifies the character used to delimit exported values in the resulting CSV file. |
ARecord |
Integer | Optional. Specifies the number of records grouped per band in the resulting file. |
AFile |
string | Optional. Specifies the file name extension for the resulting CSV file. This parameter value always replaces the file name extension passed as a part of the |
AHandler | TObject | Optional. Specifies a handler object that should implement the Icx Tip Refer to the following topic for detailed information on how to create and use handler objects: |
AEncoding | TEncoding | Optional. Specifies the character encoding format of the resulting CSV stream. If |
#Remarks
Call the cxExportVGToCSV
procedure to export source vertical grid content to a file in CSV (comma-separated values) format. Use this format if you need to load exported data to a third-party spreadsheet application while keeping the exported data size to a minimum.
Compared to CSV, plain text is more human-readable. You can call the cxExportVGToText procedure to export vertical grid data in plain text format.
#Code Example
The following code example exports vertical grid content in CSV format:
uses cxExportVGLink;
// ...
cxExportVGToCSV('Orders.csv', vgOrders);
#Grid Mode Limitations
The cxExportVGToCSV
procedure exports only the currently cached records when the source vertical grid control is in Grid Mode.