1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-16 04:42:53 +08:00
QXlsx/TestExcel/hyperlinks.cpp
Daniel Nicoletti db608768a3 Add and apply clang-format
This project has no standard on coding style,
some files use tab, others space, and new
Merge Requests usually break the current formatting
with this clang-format we can easy this.
2023-09-14 11:06:39 -03:00

31 lines
589 B
C++

// hyperlink.cpp
#include "xlsxdocument.h"
#include <QDebug>
#include <QtCore>
#include <QtGlobal>
int hyperlink()
{
//![0]
QXlsx::Document xlsx;
//![0]
//![1]
xlsx.write("A1", "http://qt-project.org");
xlsx.write("A2", "http://qt-project.org/wiki#0f68b904e33d9ac04605aecc958bcf52");
xlsx.write("A3", "mailto:info@qt-project.org");
xlsx.write("A4", "file:///C:/User/test/abc.txt");
//![1]
//![2]
xlsx.saveAs("hyperlink1.xlsx");
//![2]
QXlsx::Document xlsx2("hyperlink1.xlsx");
xlsx2.saveAs("hyperlink2.xlsx");
return 0;
}