IXlsTableResults
COM interface ( getting help with interfaces )

 

interface IXlsTableResults : IDispatch
{

  [id(1),propget] HRESULT Columns([out, retval]IXlsTableColumns** columns);
  [id(2)]         HRESULT Insert();
  [id(3),propget] HRESULT RowCount([out, retval]int* rowcount);
  [id(4),propget] HRESULT Name([out, retval] BSTR* name);
  [id(4),propput] HRESULT Name([in] BSTR name);

}

 

HRESULT Columns([out, retval]IXlsTableColumns** columns);
returns columns.

HRESULT Insert();
inserts the table results in the worksheet.

HRESULT RowCount([out, retval]int* rowcount);
returns how many rows in the recordset.

HRESULT Name([out, retval] BSTR* name);
retrieves the name of the range associated to the table results.

HRESULT Name([in] BSTR name);
sets the name of the range associated to the table results.