 |
| IXlsHyperlinks |
 |
COM interface ( getting help with interfaces )
interface IXlsHyperlinks : IDispatch
{
[id(1),propget] HRESULT Count([out, retval]int* nbshapes);
[id(2),propget] HRESULT ItemByIndex([in]int i, [out, retval]IXlsHyperlink** hl);
[id(3),propget] HRESULT ItemByLocation([in]int row, [in]int col, [out, retval]IXlsHyperlink** hl);
}
HRESULT Count([out, retval]int* nbshapes);
returns how many hyperlinks are stored.
HRESULT ItemByIndex([in]int i, [out, retval]IXlsHyperlink** hl);
returns the i-th stored hyperlink, by index.
HRESULT ItemByLocation([in]int row, [in]int col, [out, retval]IXlsHyperlink** hl);
returns the i-th stored hyperlink, by location.