Spread 8.0 Documentation
SaveTabFileU Method
Support Options
ActiveX Reference > ActiveX Methods > SaveTabFileU Method

Glossary Item Box

SaveTabFileU Method


See Also    DLL

Applies To

fpSpread control

Description

Saves the data to a Unicode tab-delimited file.

Syntax

C++

BOOL CSpreadSheet::SaveTabFileU(LPCTSTR FileName);

Visual Basic

fpSpread.SaveTabFileU(ByVal FileName As String) As Boolean

Parameters

The following parameter is available:

Parameter Description
FileName Path and filename of file to which to save tab-delimited data

Remarks

Use the SaveTabFileU method to save the data to a Unicode text file with tab-delimited data. To save the data to an ANSI file, use the SaveTabFile method.

This method is called for the current sheet setting unless you first set the Sheet property to specify the sheet with which you want to work.

Data for each column is separated by tabs (ASCII 9, or `\t' in C++); rows are separated by carriage returns/line feeds (ASCII 13 and 10, or `\r' and `\n' in C++, respectively). The fpSpread control saves only text data to the tab-delimited file; the format of the text is not saved.

Unicode tab-delimited files can be opened, modified, and saved using any text editor that supports Unicode.

By default, tab-delimited files created using Spread or the Spread Designer have the extension .TB7. However, you may use any extension.

Return Type

True if successful; otherwise, False.

See Also

Saving to a Text File

Sheet property

LoadFromFile, LoadTabFile, SaveTabFile, SaveToFile methods

DLL Correspondence

SSSaveTabFileU function

Copyright © GrapeCity, inc. All rights reserved.