[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Workbook.FromSjsJson

FromSjsJson Method

FromSjsJson(string)

Generates a workbook from a JSON string containing the contents of .sjs file format.

Declaration
public void FromSjsJson(string json)
Parameters
Type Name Description
string json

The JSON string.

Implements

FromSjsJson(string, SjsOpenOptions)

Generates a workbook from a JSON string containing the contents of .sjs file format.

Declaration
public void FromSjsJson(string json, SjsOpenOptions openOptions)
Parameters
Type Name Description
string json

The JSON string.

SjsOpenOptions openOptions

The open options for opening SpreadJS .sjs file.

Implements

FromSjsJson(Stream)

Generates a workbook from a JSON stream containing the contents of .sjs file format.

Declaration
public void FromSjsJson(Stream stream)
Parameters
Type Name Description
Stream stream

The JSON stream.

Implements

FromSjsJson(Stream, SjsOpenOptions)

Generates a workbook from a JSON stream containing the contents of .sjs file format.

Declaration
public void FromSjsJson(Stream stream, SjsOpenOptions openOptions)
Parameters
Type Name Description
Stream stream

The JSON stream.

SjsOpenOptions openOptions

The open options for opening SpreadJS .sjs file.

Implements