[]
Saves the contents of the sheet view to the specified file.
public bool Save(string fileName, bool dataOnly)
Public Function Save(fileName As String, dataOnly As Boolean) As Boolean
| Type | Name | Description |
|---|---|---|
| string | fileName | Path and name of file to which to save |
| bool | dataOnly | Whether to save data only |
| Type | Description |
|---|---|
| bool | true if successful; false otherwise |
Saves the contents of the sheet view to the specified file.
public bool Save(string fileName, SaveXMLOptions saveOption)
Public Function Save(fileName As String, saveOption As SaveXMLOptions) As Boolean
| Type | Name | Description |
|---|---|---|
| string | fileName | Path and name of file to which to save |
| SaveXMLOptions | saveOption | Save xml option |
| Type | Description |
|---|---|
| bool | True if successfull; false otherwise |
Saves the contents of the sheet view to the specified stream.
public bool Save(Stream stream, SaveXMLOptions saveOption)
Public Function Save(stream As Stream, saveOption As SaveXMLOptions) As Boolean
| Type | Name | Description |
|---|---|---|
| Stream | stream | The stream to save sheet view as XML |
| SaveXMLOptions | saveOption | Whether to save option |
| Type | Description |
|---|---|
| bool | TRUE if success. Otherwise, FALSE |
Saves the contents of the sheet view to the specified stream.
public bool Save(Stream stream, bool dataOnly)
Public Function Save(stream As Stream, dataOnly As Boolean) As Boolean
| Type | Name | Description |
|---|---|---|
| Stream | stream | The stream to save sheet view as XML |
| bool | dataOnly | Whether to save data only |
| Type | Description |
|---|---|
| bool | true if successful; false otherwise |