Table of Contents

TTMSFNCCustomGanttChart.SaveTasksToCSVStreamData Method

Saves tasks to a CSV stream using the default text encoding.

API unit family: TMSFNCGanttChart Declaring type: TTMSFNCCustomGanttChart

Overloads

Overload 1

Saves tasks to a CSV stream using the default text encoding.

procedure SaveTasksToCSVStreamData(AStream: TStream; ABooleanOutput: TTMSFNCGanttChartCSVBooleanOutput = boBinary; ADelimiter: Char = #0 ); overload;

Parameters

Name Description
AStream Destination stream that receives the CSV data.
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 stream using the specified text encoding.

procedure SaveTasksToCSVStreamData(AStream: TStream; AEncoding: TEncoding; ABooleanOutput: TTMSFNCGanttChartCSVBooleanOutput = boBinary; ADelimiter: Char = #0 ); overload;

Parameters

Name Description
AStream Destination stream that receives the CSV data.
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.