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.
 
 
 
 

17 lines
240 B

#include "xlsxdocument.h"
int main()
{
QXlsx::Document xlsx;
xlsx.write("B1", "Merge Cells");
xlsx.mergeCells("B1:B5");
xlsx.write("E2", "Merge Cells 2");
xlsx.mergeCells("E2:G4");
xlsx.save();
return 0;
}