IXlsSearch
COM interface ( getting help with interfaces )

 

interface IXlsSearch : IDispatch
{

  [id(1),propget] HRESULT Options([out, retval]IXlsSearchOptions** options);
  [id(2)        ] HRESULT SearchKeyword([in]BSTR keyword, [out, retval]IXlsSearchResults** results);

}

 

HRESULT Options([out, retval]IXlsSearchOptions** options);
retrieves the interface of options.

HRESULT SearchKeyword([in]BSTR keyword, [out, retval]IXlsSearchResults** results);
performs the search of the passed keyword, with the search options, and returns the results. The IXlsSearch interface is retrieved from the IXlsEngine interface, by calling the Search method over a passed Excel file name. For more information on search results, see here.