 |
| IXlsMergedCells |
 |
COM interface ( getting help with interfaces )
interface IXlsMergedCells : IDispatch
{
[id(1),propget] HRESULT Top([out, retval]int* row);
[id(2),propget] HRESULT Left([out, retval]int* col);
[id(3),propget] HRESULT Width([out, retval]int* width);
[id(4),propget] HRESULT Height([out, retval]int* height);
}
HRESULT Top([out, retval]int* row);
returns the top row of the merged cells.
HRESULT Left([out, retval]int* col);
returns the left column of the merged cells.
HRESULT Width([out, retval]int* width);
returns the width (amount of columns) of the merged cells.
HRESULT Height([out, retval]int* height);
returns the height (amount of rows) of the merged cells.