IXlsJSONImport
COM interface ( getting help with interfaces )

 

interface IXlsJSONImport : IDispatch
{
  [id(1),propget] HRESULT Options([out, retval]IXlsJSONImportOptions** jsonOptions);
  [id(2)]         HRESULT ImportFromURL([in]BSTR url);
  [id(3)]         HRESULT ImportFile([in]BSTR jsonFilename);
  [id(4)]         HRESULT ImportBuffer([in]IUnknown* inputLockbytes);
}

 

HRESULT Options([out, retval]IXlsJSONImportOptions** jsonOptions);
returns the options of JSON importer used to import .JSON files.

HRESULT ImportFromURL([in]BSTR url);
imports a JSON stream from the passed URL.

HRESULT ImportFile([in]BSTR jsonFilename);
imports a .JSON file.

HRESULT ImportBuffer([in]IUnknown* inputLockbytes);
imports a .JSON buffer loaded in a ILockBytes interface.