IXlsHTMLImport
COM interface ( getting help with interfaces )

 

interface IXlsHTMLImport : IDispatch
{
  [id(1),propget] HRESULT Options([out, retval]IXlsHTMLImportOptions** htmlOptions);
  [id(2)]         HRESULT ImportFromURL([in]BSTR url);
  [id(3)]         HRESULT ImportFile([in]BSTR htmlFilename);
  [id(4)]         HRESULT ImportBuffer([in]IUnknown* inputLockbytes);
}

 

HRESULT Options([out, retval]IXlsHTMLImportOptions** htmlOptions);
returns the options of HTML importer used to import .HTML files.

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

HRESULT ImportFile([in]BSTR htmlFilename);
imports a .HTML file.

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