 |
| IXlsVectorShapes |
 |
COM interface ( getting help with interfaces )
interface IXlsVectorShapes : IDispatch
{
[id(1),propget] HRESULT Count([out, retval]int* nbvectorshapes);
[id(2),propget] HRESULT Item([in]int i, [out, retval]IXlsVectorShape** vs);
[id(3),propget] HRESULT ItemByName([in]BSTR name, [out, retval]IXlsVectorShape** vs);
}
HRESULT Count([out, retval]int* nbvectorshapes);
returns how many vector shapes are stored.
HRESULT Item([in]int i, [out, retval]IXlsVectorShape** vs);
returns the i-th stored vector shapes.
HRESULT ItemByName([in]BSTR name, [out, retval]IXlsVectorShape** vs);
returns the stored vector shape.