IXlsCharts
COM interface ( getting help with interfaces )

 

interface IXlsCharts : IDispatch
{
  [id(1),propget] HRESULT Count([out, retval]int* nbcharts);
  [id(2),propget] HRESULT Item([in]int i, [out, retval]IXlsChart** chart);
  [id(3),propget] HRESULT ItemByName([in]BSTR name, [out, retval]IXlsChart** chart);

}

 

HRESULT Count([out, retval]int* nbcharts);
returns how many charts are stored.

HRESULT Item([in]int i, [out, retval]IXlsChart** chart);
returns the i-th stored chart.

HRESULT ItemByName([in]BSTR name, [out, retval]IXlsChart** chart);
returns the stored chart.