[]
        
(Showing Draft Content)

FarPoint.Win.Spread.SheetView.Save

Save Method

Save(string, bool)

Saves the contents of the sheet view to the specified file.

Declaration
public bool Save(string fileName, bool dataOnly)
Public Function Save(fileName As String, dataOnly As Boolean) As Boolean
Parameters
Type Name Description
string fileName

Path and name of file to which to save

bool dataOnly

Whether to save data only

Returns
Type Description
bool

Save(string, SaveXMLOptions)

Saves the contents of the sheet view to the specified file.

Declaration
public bool Save(string fileName, SaveXMLOptions saveOption)
Public Function Save(fileName As String, saveOption As SaveXMLOptions) As Boolean
Parameters
Type Name Description
string fileName

Path and name of file to which to save

SaveXMLOptions saveOption

Save xml option

Returns
Type Description
bool

True if successfull; false otherwise

Save(Stream, SaveXMLOptions)

Saves the contents of the sheet view to the specified stream.

Declaration
public bool Save(Stream stream, SaveXMLOptions saveOption)
Public Function Save(stream As Stream, saveOption As SaveXMLOptions) As Boolean
Parameters
Type Name Description
Stream stream

The stream to save sheet view as XML

SaveXMLOptions saveOption

Whether to save option

Returns
Type Description
bool

TRUE if success. Otherwise, FALSE

Save(Stream, bool)

Saves the contents of the sheet view to the specified stream.

Declaration
public bool Save(Stream stream, bool dataOnly)
Public Function Save(stream As Stream, dataOnly As Boolean) As Boolean
Parameters
Type Name Description
Stream stream

The stream to save sheet view as XML

bool dataOnly

Whether to save data only

Returns
Type Description
bool