TTMSFNCGanttChart.SaveTasksToCSVData Method
Saves tasks to a CSV file using the default text encoding.
API unit family: TMSFNCGanttChart
Declaring type: TTMSFNCGanttChart
Inherited from: TTMSFNCCustomGanttChart
Overloads
Overload 1
Saves tasks to a CSV file using the default text encoding.
procedure SaveTasksToCSVData(AFileName: string; ABooleanOutput: TTMSFNCGanttChartCSVBooleanOutput = boBinary; ADelimiter: Char = #0 ); overload;
Parameters
| Name | Description |
|---|---|
AFileName |
Destination CSV file name. |
ABooleanOutput |
Format used for Boolean values in the CSV output. |
ADelimiter |
Column delimiter. Pass #0 to use the default delimiter. |
Overload 2
Saves tasks to a CSV file using the specified text encoding.
procedure SaveTasksToCSVData(AFileName: string; AEncoding: TEncoding; ABooleanOutput: TTMSFNCGanttChartCSVBooleanOutput = boBinary; ADelimiter: Char = #0 ); overload;
Parameters
| Name | Description |
|---|---|
AFileName |
Destination CSV file name. |
AEncoding |
Encoding used to write the CSV data. |
ABooleanOutput |
Format used for Boolean values in the CSV output. |
ADelimiter |
Column delimiter. Pass #0 to use the default delimiter. |