IXlsFormulaError |
interface IXlsFormulaError : IDispatch { [id(1), propget] HRESULT FormulaWorksheet([out, retval] int* index); [id(2), propget] HRESULT FormulaRow([out, retval] int* row); [id(3), propget] HRESULT FormulaColumn([out, retval] int* column); [id(4), propget] HRESULT FormulaError([out, retval] enumFormulaError* error); }
The IXlsFormulaError interface can be accessed from the LastFormulaError
property of the IXlsCalculationOptions interface, which itself is exposed by the workbook.
HRESULT FormulaWorksheet([out, retval] int* index);
HRESULT FormulaRow([out, retval] int* row);
HRESULT FormulaColumn([out, retval] int* column);
HRESULT FormulaError([out, retval] enumFormulaError* error);