blob: a84ba6cdcd02f82a8ecddd0f3cc1333f08a22528 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
//![0]
import QtQuick
Text {
textFormat: Text.RichText
wrapMode: Text.WordWrap
width: 440
font.pointSize: 12
text: `<p><u style="color: green;">green with underline</u>
<span style="text-decoration: underline; text-decoration-color: green;">
green underline</span></p>
<p><s style="background-color: lightgrey;">plain strikethrough</s>
<span style="text-decoration: line-through; text-decoration-color: orange;">
orange strikethrough</span></p>
<p><span style="text-decoration: overline;">plain overline</span>
<span style="text-decoration: overline; text-decoration-color: red;">
red overline</span></p>`
}
//![0]
|