Hello everyone,
Can Anyone help me convert the code of the four HTML text formatting tags to MS WORD format
- I present below examples.
It is supposed to be applied later, e.g .: Creating MS Word Documents shows @Erel as a great example ?
1.EXAMPLE:
2.EXAMPLE:
3.EXAMPLE:
4.EXAMPLE: INSERT Horizontal Rule.
Can Anyone help me convert the code of the four HTML text formatting tags to MS WORD format
- I present below examples.
It is supposed to be applied later, e.g .: Creating MS Word Documents shows @Erel as a great example ?
Dim wd As WordUtils
wd.Initialize
Dim doc As WordDocument = wd.CreateDocument
doc.Append($" ... "$)
1.EXAMPLE:
1::
<html dir="ltr">
<head></head>
<body contenteditable="true">
<p></p>
<ul>
<li><span style="font-family: "Segoe UI";">•a</span></li>
<li><span style="font-family: "Segoe UI";">•a</span></li>
<li><span style="font-family: "Segoe UI";">•a</span></li>
</ul>
<p></p>
</body>
</html>
2.EXAMPLE:
2::
<html dir="ltr">
<head></head>
<body contenteditable="true">
<p></p>
<ol>
<li><span style="font-family: "Segoe UI";">1.a</span></li>
<li><span style="font-family: "Segoe UI";">2.a</span></li>
<li><span style="font-family: "Segoe UI";">3.a</span></li>
</ol>
<p></p>
</body>
</html>
3.EXAMPLE:
3::
<html dir="ltr">
<head></head>
<body contenteditable="true">
<p><span style="font-family: "Segoe UI"; font-size: large;"><strike>Segoe UI 14pt</strike></span></p>
</body>
</html>
4.EXAMPLE: INSERT Horizontal Rule.
4::
<html dir="ltr">
<head></head>
<body contenteditable="true">
<p><br></p>
<hr>
</body>
</html>