IXlsComments
COM interface ( getting help with interfaces )

 

interface IXlsComments : IDispatch
{
  [id(1),propget] HRESULT Count([out, retval]int* nbcomments);
  [id(2),propget] HRESULT ItemByIndex([in]int i, [out, retval]IXlsComment** comment);
  [id(3),propget] HRESULT ItemByLocation([in]int row, [in]int col, [out, retval]IXlsComment** comment);
}

 

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

HRESULT ItemByIndex([in]int i, [out, retval]IXlsComment** comment);
returns the i-th stored comment, by index.

HRESULT ItemByLocation([in]int row, [in]int col, [out, retval]IXlsComment** comment);
returns the i-th stored comment, by location.