 |
| IXlsShapes |
 |
COM interface ( getting help with interfaces )
interface IXlsShapes : IDispatch
{
[id(1),propget] HRESULT Count([out, retval]int* nbshapes);
[id(2),propget] HRESULT Item([in]int i, [out, retval]IXlsShape** shape);
[id(3),propget] HRESULT ItemByName([in]BSTR name, [out, retval]IXlsShape** shape);
}
HRESULT Count([out, retval]int* nbshapes);
returns how many shapes are stored. Shapes are vector drawings, pictures, charts, ...
HRESULT Item([in]int i, [out, retval]IXlsShape** shape);
returns the i-th stored shape. Shapes are vector drawings, pictures, charts, ...
HRESULT ItemByName([in]BSTR name, [out, retval]IXlsShape** shape);
returns the stored shape from its name. Shapes are vector drawings, pictures, charts, ...