Skip to content

Commit bb0677d

Browse files
Merge pull request #2251 from syncfusion-content/1007016_Updated_supported_file_format_page_docio
1007016- Updated Supported File Format UG page
2 parents 254c7bb + 747a375 commit bb0677d

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

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)