Skip to content

Commit 966fe32

Browse files
committed
Update changes
1 parent 2a54256 commit 966fe32

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

  • Word-to-Markdown-conversion/Customize-image-path/.NET/Customize-image-path
  • Word-to-PDF-Conversion/Convert-Word-document-to-PDF/.NET/Convert-Word-document-to-PDF

Word-to-Markdown-conversion/Customize-image-path/.NET/Customize-image-path/Program.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using Syncfusion.DocIO;
22
using Syncfusion.DocIO.DLS;
33
using Syncfusion.Drawing;
4+
using Syncfusion.Office.Markdown;
45
using System.IO;
56

67
namespace Customize_image_path
@@ -19,7 +20,7 @@ static void Main(string[] args)
1920
}
2021
}
2122
//The following code examples show the event handler to customize the image path and save the image in an external folder.
22-
static void SaveImage(object sender, ImageNodeVisitedEventArgs args)
23+
static void SaveImage(object sender, MdImageNodeVisitedEventArgs args)
2324
{
2425
string imagepath = Path.GetFullPath(@"Output/Output.png");
2526
//Save the image stream as a file.

Word-to-PDF-Conversion/Convert-Word-document-to-PDF/.NET/Convert-Word-document-to-PDF/Program.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using Syncfusion.DocIO;
2-
using Syncfusion.DocIO.DLS;
1+
using Syncfusion.DocIO.DLS;
32
using Syncfusion.DocIORenderer;
43
using Syncfusion.Pdf;
54
using System.IO;

0 commit comments

Comments
 (0)