Document::read() works for shared formula now.

This commit is contained in:
Debao Zhang
2014-10-24 16:22:08 +08:00
parent 9cd65bc3f5
commit 41e3dc1bf7
6 changed files with 142 additions and 2 deletions
+7
View File
@@ -30,5 +30,12 @@ int main()
qDebug()<<xlsx.read("A7");
//![1]
//![2]
for (int row=1; row<10; ++row) {
if (QXlsx::Cell *cell=xlsx.cellAt(row, 1))
qDebug()<<cell->value();
}
//![2]
return 0;
}