Link Search Menu Expand Document

SSpread.SaveTabFileU Method

Explanation Save the spreadsheet data in a Unicode tab-delimited file.

It has the same function as the SaveTabFile method, but the output result is a Unicode text file.

Use the ExportToTextFileU method to specify any delimiter.
Call format SaveTabFileU(Writer)
Return value None
Arguments Writer Save to Writer Object
Exception EXT-25 No valid Writer object specified
EXT-28 An error occurred in the SaveTabFileU method
Example of use
    var fs = new FileSystem();
    var f = fs.SaveDialog("Save", "Tab delimited file(*.txt)=*.txt", "", "");
    SaveTabFileU(f);
    f.Close();
    
Related item ExportToTextFileU, LoadTabFile, LoadTextFile, SaveTabFile, SaveToFile methods