Add data validation read/write support

This commit is contained in:
Debao Zhang
2013-10-29 16:54:26 +08:00
parent 5adda5735a
commit e283a0af7f
16 changed files with 947 additions and 4 deletions
+2
View File
@@ -39,6 +39,7 @@ class Worksheet;
class Package;
class Format;
class Cell;
class DataValidation;
class DocumentPrivate;
class Q_XLSX_EXPORT Document : public QObject
@@ -60,6 +61,7 @@ public:
int unmergeCells(const QString &range);
bool setRow(int row, double height, Format* format=0, bool hidden=false);
bool setColumn(int colFirst, int colLast, double width, Format* format=0, bool hidden=false);
bool addDataValidation(const DataValidation &validation);
Cell *cellAt(const QString &cell) const;
Cell *cellAt(int row, int col) const;