1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-16 04:42:53 +08:00
QXlsx/TestExcel/hyperlinks.cpp

31 lines
589 B
C++
Raw Normal View History

2017-09-16 16:34:45 +09:00
// hyperlink.cpp
2019-01-02 20:56:00 +09:00
#include <QtGlobal>
2017-09-16 12:21:23 +09:00
#include <QtCore>
2019-01-02 20:56:00 +09:00
#include <QDebug>
2017-09-16 12:21:23 +09:00
#include "xlsxdocument.h"
2017-09-16 16:34:45 +09:00
int hyperlink()
2017-09-16 12:21:23 +09:00
{
//![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]
2017-09-23 11:12:59 +09:00
xlsx.saveAs("hyperlink1.xlsx");
2017-09-16 12:21:23 +09:00
//![2]
2017-09-23 11:12:59 +09:00
QXlsx::Document xlsx2("hyperlink1.xlsx");
xlsx2.saveAs("hyperlink2.xlsx");
2017-09-16 12:21:23 +09:00
return 0;
}