Add new member QXlsx::Document::cellAt()

This commit is contained in:
Debao Zhang
2013-10-23 16:05:22 +08:00
parent afa8c959e8
commit 9c70116351
5 changed files with 56 additions and 0 deletions
+4
View File
@@ -38,6 +38,7 @@ class Workbook;
class Worksheet;
class Package;
class Format;
class Cell;
class DocumentPrivate;
class Q_XLSX_EXPORT Document : public QObject
@@ -60,6 +61,9 @@ public:
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);
Cell *cellAt(const QString &cell) const;
Cell *cellAt(int row, int col) const;
QString documentProperty(const QString &name) const;
void setDocumentProperty(const QString &name, const QString &property);
QStringList documentPropertyNames() const;