You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
516 B
26 lines
516 B
#include "xlsxdocument.h"
|
|
#include "xlsxformat.h"
|
|
|
|
QTXLSX_USE_NAMESPACE
|
|
|
|
int main()
|
|
{
|
|
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.save();
|
|
|
|
return 0;
|
|
}
|
|
|
|
|