#1720 - Update demo 2 to show underline and strike used together

This commit is contained in:
Dolan
2022-10-25 19:03:48 +01:00
parent f4ed171f85
commit 20b793620a

View File

@ -182,6 +182,17 @@ const doc = new Document({
}),
],
}),
new Paragraph({
children: [
new TextRun({
strike: true,
underline: {
type: UnderlineType.SINGLE,
},
text: "Underline and Strike",
}),
],
}),
],
},
],