Add ArrayFormula support

This commit is contained in:
Debao Zhang
2013-11-05 17:28:21 +08:00
parent cc6bdf0105
commit 8d1b109605
8 changed files with 171 additions and 7 deletions
+2
View File
@@ -65,6 +65,8 @@ public:
int writeNumeric(int row, int column, double value, Format *format=0);
int writeFormula(const QString &row_column, const QString &formula, Format *format=0, double result=0);
int writeFormula(int row, int column, const QString &formula, Format *format=0, double result=0);
int writeArrayFormula(const QString &range, const QString &formula, Format *format=0);
int writeArrayFormula(const CellRange &range, const QString &formula, Format *format=0);
int writeBlank(const QString &row_column, Format *format=0);
int writeBlank(int row, int column, Format *format=0);
int writeBool(const QString &row_column, bool value, Format *format=0);