Skip to content

Commit 9835e81

Browse files
authored
Merge branch 'hotfix/hotfix-v32.2.3' into 809971-JS5-revamp
2 parents 954d460 + de292c6 commit 9835e81

3 files changed

Lines changed: 24 additions & 7 deletions

File tree

Document-Processing/PDF/PDF-Library/NET/Working-with-OCR/Troubleshooting.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -634,3 +634,20 @@ By applying these configuration changes, you can ensure that your AKS workloads
634634

635635
</table>
636636

637+
## Does OCRProcessor require Microsoft.mshtml?
638+
639+
<table>
640+
<tr>
641+
<th style="font-size:14px" width="100px">Query
642+
</th>
643+
<td>
644+
Is Microsoft.mshtml required when using the OCRProcessor in the .NET Framework?
645+
</td>
646+
</tr>
647+
<tr>
648+
<th style="font-size:14px" width="100px">Solution</th>
649+
<td>
650+
Yes, the Microsoft.mshtml component is required when using the OCRProcessor in .NET Framework applications. We internally rely on this package to parse the hOCR results, which are delivered in HTML format. Because of this, Microsoft.mshtml is necessary for .NET Framework projects that use the OCRProcessor.
651+
</td>
652+
</tr>
653+
</table>

Document-Processing/Word/Word-Library/NET/Support-File-Formats.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ DOC
2525
{{'[DOCX](https://help.syncfusion.com/document-processing/word/word-library/net/open-and-save-word-document-in-console-application#open-and-save-word-document-using-net-core-and-latest)'| markdownify }}
2626
</th>
2727
<th>
28-
{{'[Word Processing XML (2007)]()'| markdownify }}
28+
{{'[Word Processing XML (2007)](https://help.syncfusion.com/document-processing/word/word-library/net/wordml)'| markdownify }}
2929
</th>
3030
<th>
3131
DOT
@@ -113,7 +113,7 @@ DOTM
113113
<td>Yes</td>
114114
</tr>
115115
<tr>
116-
<th>{{'[Word Processing XML (2007)]()'| markdownify }}</th>
116+
<th>{{'[Word Processing XML (2007)](https://help.syncfusion.com/document-processing/word/word-library/net/wordml)'| markdownify }}</th>
117117
<td>Yes</td>
118118
<td>Yes</td>
119119
<td>Yes</td>

Document-Processing/Word/Word-Library/NET/wordml.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ N> Refer to the appropriate tabs in the code snippets section: ***C# [Cross-plat
1919
{% tabs %}
2020

2121
{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/DocIO-Examples/refs/heads/main/WordML-conversion/Convert-Word-to-WordML/.NET/Convert-Word-to-WordML/Program.cs" %}
22-
FileStream fileStreamPath = new FileStream("Template.docx", FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
22+
2323
//Loads an existing Word document into DocIO instance
2424
using (FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.docx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
2525
{
@@ -66,9 +66,9 @@ The following code example shows how to convert a WordML file into Word document
6666
{% tabs %}
6767

6868
{% highlight c# tabtitle="C# [Cross-platform]" playgroundButtonLink="https://raw.githubusercontent.com/SyncfusionExamples/DocIO-Examples/refs/heads/main/WordML-conversion/Convert-WordML-to-Word/.NET/Convert-WordML-to-Word/Program.cs" %}
69-
FileStream fileStreamPath = new FileStream("Template.txt", FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
69+
7070
//Loads an existing WordML file into DocIO instance
71-
using (FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Template.xml"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
71+
using (FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Input.xml"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
7272
{
7373
using (WordDocument document = new WordDocument(fileStreamPath, FormatType.WordML))
7474
{
@@ -86,7 +86,7 @@ using (FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"Data/Templa
8686

8787
{% highlight c# tabtitle="C# [Windows-specific]" %}
8888
//Loads a WordML file
89-
WordDocument document = new WordDocument("Template.xml");
89+
WordDocument document = new WordDocument("Input.xml");
9090
//Saves the document as Word document
9191
document.Save("WordMLToWord.docx", FormatType.Docx);
9292
//Closes the document
@@ -95,7 +95,7 @@ document.Close();
9595

9696
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
9797
'Loads a WordML file
98-
Dim document As New WordDocument("Template.xml")
98+
Dim document As New WordDocument("Input.xml")
9999
'Saves the document as Word document
100100
document.Save("WordMLToWord.docx", FormatType.Docx)
101101
'Closes the document

0 commit comments

Comments
 (0)