[]
Integrates all JSON files from the SJS file into a single string, then put the string into the stream.
void ToSjsJson(Stream stream)
Sub ToSjsJson(stream As Stream)
Type | Name | Description |
---|---|---|
Stream | stream | The specified file stream. |
Integrates all JSON files from the SJS file into a single string, then put the string into the stream.
void ToSjsJson(Stream stream, SjsSaveOptions options)
Sub ToSjsJson(stream As Stream, options As SjsSaveOptions)
Type | Name | Description |
---|---|---|
Stream | stream | The specified file stream. |
SjsSaveOptions | options | Option for saving sjs file. |
Generates a JSON string from a workbook. It integrates all JSON files from the SJS file into a single string.
string ToSjsJson()
Function ToSjsJson() As String
Type | Description |
---|---|
string | Json data. |
Generates a JSON string from a workbook. It integrates all JSON files from the SJS file into a single string.
string ToSjsJson(SjsSaveOptions options)
Function ToSjsJson(options As SjsSaveOptions) As String
Type | Name | Description |
---|---|---|
SjsSaveOptions | options | Option for saving sjs file. |
Type | Description |
---|---|
string | Json data. |