1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-16 04:42:53 +08:00
QXlsx/TestExcel/mergecells.cpp
Look Skyworker 8caad4c110 test excel
2018-04-20 08:58:43 +09:00

32 lines
563 B
C++

// mergecells.cpp
#include "xlsxdocument.h"
#include "xlsxformat.h"
using namespace QXlsx;
int mergecells()
{
Document xlsx;
//![0]
Format format;
format.setHorizontalAlignment(Format::AlignHCenter);
format.setVerticalAlignment(Format::AlignVCenter);
//![0]
//![1]
xlsx.write("B4", "Hello Qt!");
xlsx.mergeCells("B4:F6", format);
xlsx.write("B8", 1);
xlsx.mergeCells("B8:C21", format);
xlsx.write("E8", 2);
xlsx.mergeCells("E8:F21", format);
//![1]
xlsx.saveAs("mergecells.xlsx");
return 0;
}