Fix issue 6: row & column No. starts from 1 instead of 0 now

This commit is contained in:
Debao Zhang
2013-11-05 11:15:25 +08:00
parent daeff262bb
commit 470abc6453
11 changed files with 123 additions and 148 deletions
+9 -9
View File
@@ -5,31 +5,31 @@
int main()
{
QXlsx::Document xlsx;
xlsx.write(0, 2, "Row:0, Col:2 ==> (C1)");
xlsx.write(1, 2, "Row:0, Col:2 ==> (C1)");
//Set the height of the first row to 50.0(points)
xlsx.setRow(0, 50.0);
xlsx.setRow(1, 50.0);
//Set the width of the third column to 40.0(chars)
xlsx.setColumn(2, 3, 40.0);
xlsx.setColumn(3, 3, 40.0);
//Set style for the row 11th.
QXlsx::Format *format1 = xlsx.createFormat();
format1->setFontBold(true);
format1->setFontColor(QColor(Qt::blue));
format1->setFontSize(20);
xlsx.write(10, 0, "Hello Row Style");
xlsx.write(10, 5, "Blue Color");
xlsx.setRow(10, 40, format1);
xlsx.write(11, 1, "Hello Row Style");
xlsx.write(11, 6, "Blue Color");
xlsx.setRow(11, 41, format1);
//Set style for the col [9th, 16th)
QXlsx::Format *format2 = xlsx.createFormat();
format2->setFontBold(true);
format2->setFontColor(QColor(Qt::magenta));
for (int row=11; row<30; row++)
for (int col=8; col<15; col++)
for (int row=12; row<=30; row++)
for (int col=9; col<=15; col++)
xlsx.write(row, col, row+col);
xlsx.setColumn(8, 15, 5.0, format2);
xlsx.setColumn(9, 16, 5.0, format2);
xlsx.save();
return 0;