Skip to content

Commit 840689a

Browse files
Merge branch 'hotfix/hotfix-v32.2.3' into EJ2-1009433-hotfix
2 parents 105ccaa + bb0677d commit 840689a

11 files changed

Lines changed: 260 additions & 7 deletions

File tree

Document-Processing-toc.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
<li>
2323
<a href="/document-processing/ai-coding-assistant/mcp-server/spreadsheeteditorsdk">Spreadsheet Editor SDK</a>
2424
</li>
25+
<li>
26+
<a href="/document-processing/ai-coding-assistant/mcp-server/pdfviewersdk">PDF Viewer SDK</a>
27+
</li>
2528
</ul>
2629
</li>
2730
<li>

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
41.7 KB
Loading
87.4 KB
Loading
56.1 KB
Loading
82.4 KB
Loading
73.1 KB
Loading
74.8 KB
Loading
51.6 KB
Loading

0 commit comments

Comments
 (0)