[]
Generates a workbook from a JSON string containing the contents of .sjs file format.
void FromSjsJson(string json, SjsOpenOptions openOptions)
Sub FromSjsJson(json As String, openOptions As SjsOpenOptions)
Type | Name | Description |
---|---|---|
string | json | The JSON string. |
SjsOpenOptions | openOptions | The open options for opening SpreadJS .sjs file. |
Generates a workbook from a JSON stream containing the contents of .sjs file format.
void FromSjsJson(Stream stream)
Sub FromSjsJson(stream As Stream)
Type | Name | Description |
---|---|---|
Stream | stream | The JSON stream. |
Generates a workbook from a JSON stream containing the contents of .sjs file format.
void FromSjsJson(Stream stream, SjsOpenOptions openOptions)
Sub FromSjsJson(stream As Stream, openOptions As SjsOpenOptions)
Type | Name | Description |
---|---|---|
Stream | stream | The JSON stream. |
SjsOpenOptions | openOptions | The open options for opening SpreadJS .sjs file. |
Generates a workbook from a JSON string containing the contents of .sjs file format.
void FromSjsJson(string json)
Sub FromSjsJson(json As String)
Type | Name | Description |
---|---|---|
string | json | The JSON string. |