Saves the Active sheet of an Excel file as a text delimited file.
procedure SaveAsTextDelim(const OutStream: TStream; const Workbook: TExcelFile; const Delim: UTF16Char); overload;
SaveAsTextDelim(const TStream OutStream, const TExcelFile Workbook, const UTF16Char Delim);
|
Parameters |
Description |
|
const OutStream: TStream |
Stream where we are going to save the file. |
|
const Workbook: TExcelFile |
Workbook we want to save. |
|
const Delim: UTF16Char |
Delimiter used in the file ("," or ";" for csv, #9 for tab delimited) |
You will normally want to use TFlexCelImport.SaveAsText instead of this method to save whole files, or SaveRangeAsTextDelim to save a range of the active sheet.
|
Copyright (c) 2002-2008 TMS Software. All rights reserved.
|
|
What do you think about this topic? Send feedback!
|