mirror of
https://github.com/QtExcel/QXlsx.git
synced 2025-01-16 04:42:53 +08:00
41 lines
724 B
C++
41 lines
724 B
C++
// mergecells.cpp
|
|
|
|
// QXlsx
|
|
// MIT License
|
|
// https://github.com/j2doll/QXlsx
|
|
//
|
|
// QtXlsx
|
|
// https://github.com/dbzhang800/QtXlsxWriter
|
|
// http://qtxlsx.debao.me/
|
|
// MIT License
|
|
|
|
#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;
|
|
}
|
|
|