[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Workbook.ToSjsJson

ToSjsJson Method

ToSjsJson(Stream)

Integrates all JSON files from the SpreadJS .sjs file into a single string, then put the string into the stream.

Declaration
public void ToSjsJson(Stream stream)
Public Sub ToSjsJson(stream As Stream)
Parameters
Type Name Description
Stream stream

The specified file stream.

Implements

ToSjsJson(Stream, SjsSaveOptions)

Integrates all JSON files from the SpreadJS .sjs file into a single string, then put the string into the stream.

Declaration
public void ToSjsJson(Stream stream, SjsSaveOptions options)
Public Sub ToSjsJson(stream As Stream, options As SjsSaveOptions)
Parameters
Type Name Description
Stream stream

The specified file stream.

SjsSaveOptions options

Option for opening SpreadJS .sjs file.

Implements

ToSjsJson()

Generates a JSON string from a workbook. It integrates all JSON files from the SpreadJS .sjs file into a single string.

Declaration
public string ToSjsJson()
Public Function ToSjsJson() As String
Returns
Type Description
string

Json data.

Implements

ToSjsJson(SjsSaveOptions)

Generates a JSON string from a workbook. It integrates all JSON files from the SpreadJS .sjs file into a single string.

Declaration
public string ToSjsJson(SjsSaveOptions options)
Public Function ToSjsJson(options As SjsSaveOptions) As String
Parameters
Type Name Description
SjsSaveOptions options

Option for saving SpreadJS .sjs file.

Returns
Type Description
string

Json data.

Implements