Can read .xlsx files with border styles now

This commit is contained in:
Debao Zhang
2013-10-22 13:37:49 +08:00
parent 9abb26127c
commit 31270604c6
4 changed files with 127 additions and 4 deletions
+1
View File
@@ -12,6 +12,7 @@ int main()
QXlsx::Format *format = xlsx.createFormat();
format->setFontColor(QColor(Qt::blue));
format->setFontSize(15);
format->setBorderStyle(QXlsx::Format::BorderDashDotDot);
format->setPatternBackgroundColor(QColor(Qt::gray));
xlsx.write("A1", "Hello Qt!", format);
xlsx.write("A2", 500);