Skip to content

Commit

Permalink
Added new docx to xlsx example
Browse files Browse the repository at this point in the history
  • Loading branch information
falleretic committed Apr 2, 2024
1 parent 6bacaad commit e123803
Showing 1 changed file with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
Expand Down Expand Up @@ -137,6 +137,16 @@ public void DocxToTxt()
//ExEnd:DocxToTxt
}

[Test]
public void DocxToXlsx()
{
//ExStart:DocxToXlsx
//GistId:f5a08835e924510d3809e41c3b8b81a2
Document doc = new Document(MyDir + "Document.docx");
doc.Save(ArtifactsDir + "BaseConversions.DocxToXlsx.xlsx");
//ExEnd:DocxToXlsx
}

[Test]
public void TxtToDocx()
{
Expand Down

0 comments on commit e123803

Please sign in to comment.