IXlsWorksheetRows |
interface IXlsWorksheetRows : IDispatch { [id(1), propget] HRESULT Height([out, retval]double* height); [id(1), propput] HRESULT Height([in]double height); [id(2), propget] HRESULT AutoFit([out, retval]BOOL* autofit); [id(2), propput] HRESULT AutoFit([in]BOOL autofit); [id(3), ] HRESULT Insert([in]int amountRows); [id(4), propget] HRESULT LeftExtent([in]int col, [out, retval]int* leftcol); [id(5), propget] HRESULT RightExtent([in]int col, [out, retval]int* rightcol); [id(6), ] HRESULT Delete(); [id(7), propget] HRESULT Hide([out, retval]BOOL* hide); [id(7), propput] HRESULT Hide([in]BOOL hide); [id(8), propget] HRESULT Style([out, retval]IXlsStyle** style); [id(8), propput] HRESULT Style([in]IXlsStyle* style); [id(9), propget] HRESULT IsEmpty([out, retval]BOOL* isempty); [id(10) ] HRESULT Move([in]int amountRows); [id(11),propget] HRESULT Position([out, retval]int* positionInPixels); [id(12),propget] HRESULT Range([out, retval]IXlsRange** range); [id(13),propget] HRESULT Outline([out, retval]enumOutlineLevel* level); }
HRESULT Height([out, retval]int* height);
HRESULT Height([in]int height);
HRESULT AutoFit([out, retval]BOOL* autofit);
HRESULT AutoFit([in]BOOL autofit);
HRESULT Insert([in]int amountRows);
HRESULT LeftExtent([in]int col, [out, retval]int* leftcol);
HRESULT RightExtent([in]int col, [out, retval]int* rightcol);
HRESULT Delete();
HRESULT Hide([out, retval]BOOL* hide)
HRESULT Hide([in]BOOL hide);
HRESULT Style([out, retval]IXlsStyle** style);
HRESULT Style([in]IXlsStyle* style);
HRESULT IsEmpty([out, retval]BOOL* isempty);
HRESULT Move([in]int amountRows);
HRESULT Position([out, retval]int* positionInPixels);
HRESULT Range([out, retval]IXlsRange** range);
HRESULT Outline([out, retval]enumOutlineLevel* level);