diff --git a/content/english/net/_index.md b/content/english/net/_index.md
new file mode 100644
index 0000000..35fa79f
--- /dev/null
+++ b/content/english/net/_index.md
@@ -0,0 +1,21 @@
+---
+title: Comprehensive Tutorials and Examples of GroupDocs.Conversion for .NET
+linktitle: GroupDocs.Conversion for .NET Tutorials
+type: docs
+weight: 10
+url: /net/
+description:
+is_root: true
+---
+
+### [File Conversion to PDF](./file-conversion-to-pdf/)
+
+### [File Format Conversion](./file-format-conversion-tutorials/)
+
+### [Convert Files to PDF](./convert-files-to-pdf/)
+
+### [Document Conversion](./document-conversion/)
+
+### [Converting File Types to PDF](./converting-file-types-to-pdf/)
+
+### [PDF Conversion](./pdf-conversion/)
diff --git a/content/english/net/convert-files-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/_index.md
new file mode 100644
index 0000000..3010ad0
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/_index.md
@@ -0,0 +1,31 @@
+---
+title: Convert Files to PDF
+linktitle: Convert Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 22
+url: /net/convert-files-to-pdf/
+---
+
+## Convert Files to PDF Tutorials
+### [Convert DWG CAD Files to PDF](./convert-dwg-to-pdf/)
+### [Convert DWT CAD Template Files to PDF](./convert-dwt-to-pdf/)
+### [Convert DXF CAD Drawing Exchange Files to PDF](./convert-dxf-to-pdf/)
+### [Convert EMF Windows Metafiles to PDF](./convert-emf-to-pdf/)
+### [Convert EML Email Messages to PDF](./convert-eml-to-pdf/)
+### [Convert EMLX Apple Mail Email Messages to PDF](./convert-emlx-to-pdf/)
+### [Convert EMZ Enhanced Metafiles to PDF](./convert-emz-to-pdf/)
+### [Convert EPS Encapsulated PostScript Files to PDF](./convert-eps-to-pdf/)
+### [Convert EPUB eBooks to PDF](./convert-epub-to-pdf/)
+### [Convert FODP OpenDocument Presentations to PDF](./convert-fodp-to-pdf/)
+### [Convert FODS OpenDocument Spreadsheets to PDF](./convert-fods-to-pdf/)
+### [Convert GIF Images to PDF](./convert-gif-to-pdf/)
+### [Convert HTML Web Pages to PDF](./convert-html-to-pdf/)
+### [Convert HTM Web Pages to PDF](./convert-htm-to-pdf/)
+### [Convert ICO Icons to PDF](./convert-ico-to-pdf/)
+### [Convert IFC Building Information Modeling Files to PDF](./convert-ifc-to-pdf/)
+### [Convert IGS 3D Model Files to PDF](./convert-igs-to-pdf/)
+### [Convert J2C JPEG-LS Compressed Images to PDF](./convert-j2c-to-pdf/)
+### [Convert J2K JPEG 2000 Images to PDF](./convert-j2k-to-pdf/)
+### [Convert JPEG-LS (.JLS) Files to PDF](./convert-jls-to-pdf/)
\ No newline at end of file
diff --git a/content/english/net/convert-files-to-pdf/convert-dwg-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-dwg-to-pdf/_index.md
new file mode 100644
index 0000000..f3240ca
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-dwg-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DWG CAD Files to PDF
+linktitle: Convert DWG CAD Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 10
+url: /net/convert-files-to-pdf/convert-dwg-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DWG file into PDF format.
+ /// For more details about AutoCAD Drawing Database File (.dwg) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-dwg-to-pdf
+ ///
+ internal static class ConvertDwgToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "dwg-converted-to.pdf");
+
+ // Load the source DWG file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DWG))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-dwt-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-dwt-to-pdf/_index.md
new file mode 100644
index 0000000..8c58377
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-dwt-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DWT CAD Template Files to PDF
+linktitle: Convert DWT CAD Template Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 11
+url: /net/convert-files-to-pdf/convert-dwt-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DWT file into PDF format.
+ /// For more details about AutoCAD Drawing Template (.dwt) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-dwt-to-pdf
+ ///
+ internal static class ConvertDwtToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "dwt-converted-to.pdf");
+
+ // Load the source DWT file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DWT))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-dxf-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-dxf-to-pdf/_index.md
new file mode 100644
index 0000000..2941aab
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-dxf-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DXF CAD Drawing Exchange Files to PDF
+linktitle: Convert DXF CAD Drawing Exchange Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 12
+url: /net/convert-files-to-pdf/convert-dxf-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DXF file into PDF format.
+ /// For more details about Autodesk Drawing Exchange File Format (.dxf) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-dxf-to-pdf
+ ///
+ internal static class ConvertDxfToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "dxf-converted-to.pdf");
+
+ // Load the source DXF file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DXF))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-emf-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-emf-to-pdf/_index.md
new file mode 100644
index 0000000..f244f8c
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-emf-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert EMF Windows Metafiles to PDF
+linktitle: Convert EMF Windows Metafiles to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 13
+url: /net/convert-files-to-pdf/convert-emf-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert EMF file into PDF format.
+ /// For more details about Enhanced Metafile Format (.emf) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-emf-to-pdf
+ ///
+ internal static class ConvertEmfToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "emf-converted-to.pdf");
+
+ // Load the source EMF file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_EMF))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-eml-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-eml-to-pdf/_index.md
new file mode 100644
index 0000000..029828d
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-eml-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert EML Email Messages to PDF
+linktitle: Convert EML Email Messages to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 14
+url: /net/convert-files-to-pdf/convert-eml-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert EML file into PDF format.
+ /// For more details about E-Mail Message File (.eml) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-eml-to-pdf
+ ///
+ internal static class ConvertEmlToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "eml-converted-to.pdf");
+
+ // Load the source EML file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_EML))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-emlx-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-emlx-to-pdf/_index.md
new file mode 100644
index 0000000..d1fab24
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-emlx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert EMLX Apple Mail Email Messages to PDF
+linktitle: Convert EMLX Apple Mail Email Messages to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 15
+url: /net/convert-files-to-pdf/convert-emlx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert EMLX file into PDF format.
+ /// For more details about Apple Mail Message (.emlx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-emlx-to-pdf
+ ///
+ internal static class ConvertEmlxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "emlx-converted-to.pdf");
+
+ // Load the source EMLX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_EMLX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-emz-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-emz-to-pdf/_index.md
new file mode 100644
index 0000000..6c92ed1
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-emz-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert EMZ Enhanced Metafiles to PDF
+linktitle: Convert EMZ Enhanced Metafiles to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 16
+url: /net/convert-files-to-pdf/convert-emz-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert EMZ file into PDF format.
+ /// For more details about Enhanced Windows Metafile Compressed (.emz) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-emz-to-pdf
+ ///
+ internal static class ConvertEmzToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "emz-converted-to.pdf");
+
+ // Load the source EMZ file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_EMZ))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-eps-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-eps-to-pdf/_index.md
new file mode 100644
index 0000000..dcd471a
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-eps-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert EPS Encapsulated PostScript Files to PDF
+linktitle: Convert EPS Encapsulated PostScript Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 17
+url: /net/convert-files-to-pdf/convert-eps-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert EPS file into PDF format.
+ /// For more details about Encapsulated PostScript File (.eps) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-eps-to-pdf
+ ///
+ internal static class ConvertEpsToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "eps-converted-to.pdf");
+
+ // Load the source EPS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_EPS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-epub-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-epub-to-pdf/_index.md
new file mode 100644
index 0000000..deb0add
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-epub-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert EPUB eBooks to PDF
+linktitle: Convert EPUB eBooks to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 18
+url: /net/convert-files-to-pdf/convert-epub-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert EPUB file into PDF format.
+ /// For more details about Digital E-Book File Format (.epub) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-epub-to-pdf
+ ///
+ internal static class ConvertEpubToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "epub-converted-to.pdf");
+
+ // Load the source EPUB file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_EPUB))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-fodp-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-fodp-to-pdf/_index.md
new file mode 100644
index 0000000..6b705b5
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-fodp-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert FODP OpenDocument Presentations to PDF
+linktitle: Convert FODP OpenDocument Presentations to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 19
+url: /net/convert-files-to-pdf/convert-fodp-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert FODP file into PDF format.
+ /// For more details about OpenDocument Flat XML Presentation (.fodp) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-fodp-to-pdf
+ ///
+ internal static class ConvertFodpToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "fodp-converted-to.pdf");
+
+ // Load the source FODP file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_FODP))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-fods-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-fods-to-pdf/_index.md
new file mode 100644
index 0000000..e95ec8d
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-fods-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert FODS OpenDocument Spreadsheets to PDF
+linktitle: Convert FODS OpenDocument Spreadsheets to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 20
+url: /net/convert-files-to-pdf/convert-fods-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert FODS file into PDF format.
+ /// For more details about OpenDocument Flat XML Spreadsheet (.fods) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-fods-to-pdf
+ ///
+ internal static class ConvertFodsToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "fods-converted-to.pdf");
+
+ // Load the source FODS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_FODS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-gif-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-gif-to-pdf/_index.md
new file mode 100644
index 0000000..4b9f483
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-gif-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert GIF Images to PDF
+linktitle: Convert GIF Images to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 21
+url: /net/convert-files-to-pdf/convert-gif-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert GIF file into PDF format.
+ /// For more details about Graphical Interchange Format File (.gif) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-gif-to-pdf
+ ///
+ internal static class ConvertGifToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "gif-converted-to.pdf");
+
+ // Load the source GIF file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_GIF))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-htm-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-htm-to-pdf/_index.md
new file mode 100644
index 0000000..4a52fdc
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-htm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert HTM Web Pages to PDF
+linktitle: Convert HTM Web Pages to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 23
+url: /net/convert-files-to-pdf/convert-htm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert HTM file into PDF format.
+ /// For more details about Hypertext Markup Language File (.htm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-htm-to-pdf
+ ///
+ internal static class ConvertHtmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "htm-converted-to.pdf");
+
+ // Load the source HTM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_HTM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-html-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-html-to-pdf/_index.md
new file mode 100644
index 0000000..9de2c1c
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-html-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert HTML Web Pages to PDF
+linktitle: Convert HTML Web Pages to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 22
+url: /net/convert-files-to-pdf/convert-html-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert HTML file into PDF format.
+ /// For more details about Hyper Text Markup Language (.html) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-html-to-pdf
+ ///
+ internal static class ConvertHtmlToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "html-converted-to.pdf");
+
+ // Load the source HTML file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_HTML))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-ico-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-ico-to-pdf/_index.md
new file mode 100644
index 0000000..df76e5c
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-ico-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert ICO Icons to PDF
+linktitle: Convert ICO Icons to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 24
+url: /net/convert-files-to-pdf/convert-ico-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert ICO file into PDF format.
+ /// For more details about Microsoft Icon File (.ico) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-ico-to-pdf
+ ///
+ internal static class ConvertIcoToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "ico-converted-to.pdf");
+
+ // Load the source ICO file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_ICO))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-ifc-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-ifc-to-pdf/_index.md
new file mode 100644
index 0000000..ae4348e
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-ifc-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert IFC Building Information Modeling Files to PDF
+linktitle: Convert IFC Building Information Modeling Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 25
+url: /net/convert-files-to-pdf/convert-ifc-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert IFC file into PDF format.
+ /// For more details about Industry Foundation Classes (IFC) File Format (.ifc) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-ifc-to-pdf
+ ///
+ internal static class ConvertIfcToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "ifc-converted-to.pdf");
+
+ // Load the source IFC file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_IFC))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-igs-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-igs-to-pdf/_index.md
new file mode 100644
index 0000000..b559d19
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-igs-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert IGS 3D Model Files to PDF
+linktitle: Convert IGS 3D Model Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 26
+url: /net/convert-files-to-pdf/convert-igs-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert IGS file into PDF format.
+ /// For more details about Initial Graphics Exchange Specification (IGES) (.igs) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-igs-to-pdf
+ ///
+ internal static class ConvertIgsToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "igs-converted-to.pdf");
+
+ // Load the source IGS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_IGS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-j2c-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-j2c-to-pdf/_index.md
new file mode 100644
index 0000000..1e7e13f
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-j2c-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert J2C JPEG-LS Compressed Images to PDF
+linktitle: Convert J2C JPEG-LS Compressed Images to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 27
+url: /net/convert-files-to-pdf/convert-j2c-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert J2C file into PDF format.
+ /// For more details about JPEG 2000 Image File (.j2c) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-j2c-to-pdf
+ ///
+ internal static class ConvertJ2cToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "j2c-converted-to.pdf");
+
+ // Load the source J2C file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_J2C))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-j2k-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-j2k-to-pdf/_index.md
new file mode 100644
index 0000000..2bcd390
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-j2k-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert J2K JPEG 2000 Images to PDF
+linktitle: Convert J2K JPEG 2000 Images to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 28
+url: /net/convert-files-to-pdf/convert-j2k-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert J2K file into PDF format.
+ /// For more details about JPEG 2000 Image (.j2k) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-j2k-to-pdf
+ ///
+ internal static class ConvertJ2kToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "j2k-converted-to.pdf");
+
+ // Load the source J2K file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_J2K))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/convert-files-to-pdf/convert-jls-to-pdf/_index.md b/content/english/net/convert-files-to-pdf/convert-jls-to-pdf/_index.md
new file mode 100644
index 0000000..486ebf6
--- /dev/null
+++ b/content/english/net/convert-files-to-pdf/convert-jls-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert JPEG-LS (.JLS) Files to PDF
+linktitle: Convert JPEG-LS (.JLS) Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 29
+url: /net/convert-files-to-pdf/convert-jls-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert JLS file into PDF format.
+ /// For more details about JPEG Lossless Image File (.jls) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-jls-to-pdf
+ ///
+ internal static class ConvertJlsToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "jls-converted-to.pdf");
+
+ // Load the source JLS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_JLS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/_index.md
new file mode 100644
index 0000000..758ec72
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/_index.md
@@ -0,0 +1,32 @@
+---
+title: Converting File Types to PDF
+linktitle: Converting File Types to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 24
+url: /net/converting-file-types-to-pdf/
+---
+
+## Converting File Types to PDF Tutorials
+### [Convert VSSM to PDF](./convert-vssm-to-pdf/)
+### [Convert VSS to PDF](./convert-vss-to-pdf/)
+### [Convert VSSX to PDF](./convert-vssx-to-pdf/)
+### [Convert VSTM to PDF](./convert-vstm-to-pdf/)
+### [Convert VST to PDF](./convert-vst-to-pdf/)
+### [Convert VSTX to PDF](./convert-vstx-to-pdf/)
+### [Convert VSX to PDF](./convert-vsx-to-pdf/)
+### [Convert VTX to PDF](./convert-vtx-to-pdf/)
+### [Convert WebP to PDF](./convert-webp-to-pdf/)
+### [Convert WMF to PDF](./convert-wmf-to-pdf/)
+### [Convert WMZ to PDF](./convert-wmz-to-pdf/)
+### [Convert XLAM to PDF](./convert-xlam-to-pdf/)
+### [Convert XLSB to PDF](./convert-xlsb-to-pdf/)
+### [Convert XLSM to PDF](./convert-xlsm-to-pdf/)
+### [Convert XLS to PDF](./convert-xls-to-pdf/)
+### [Convert XLSX to PDF](./convert-xlsx-to-pdf/)
+### [Convert XLTM to PDF](./convert-xltm-to-pdf/)
+### [Convert XLT to PDF](./convert-xlt-to-pdf/)
+### [Convert XLTX to PDF](./convert-xltx-to-pdf/)
+### [Convert XML to PDF](./convert-xml-to-pdf/)
+### [Convert XPS to PDF](./convert-xps-to-pdf/)
\ No newline at end of file
diff --git a/content/english/net/converting-file-types-to-pdf/convert-vss-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-vss-to-pdf/_index.md
new file mode 100644
index 0000000..1d41991
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-vss-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VSS to PDF
+linktitle: Convert VSS to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 11
+url: /net/converting-file-types-to-pdf/convert-vss-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VSS file into PDF format.
+ /// For more details about Visio Stencil File (.vss) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vss-to-pdf
+ ///
+ internal static class ConvertVssToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vss-converted-to.pdf");
+
+ // Load the source VSS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VSS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-vssm-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-vssm-to-pdf/_index.md
new file mode 100644
index 0000000..b62fa32
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-vssm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VSSM to PDF
+linktitle: Convert VSSM to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 10
+url: /net/converting-file-types-to-pdf/convert-vssm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VSSM file into PDF format.
+ /// For more details about Microsoft Visio Macro Enabled File Format (.vssm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vssm-to-pdf
+ ///
+ internal static class ConvertVssmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vssm-converted-to.pdf");
+
+ // Load the source VSSM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VSSM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-vssx-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-vssx-to-pdf/_index.md
new file mode 100644
index 0000000..afa90b9
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-vssx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VSSX to PDF
+linktitle: Convert VSSX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 12
+url: /net/converting-file-types-to-pdf/convert-vssx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VSSX file into PDF format.
+ /// For more details about Visio Stencil File Format (.vssx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vssx-to-pdf
+ ///
+ internal static class ConvertVssxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vssx-converted-to.pdf");
+
+ // Load the source VSSX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VSSX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-vst-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-vst-to-pdf/_index.md
new file mode 100644
index 0000000..cb49dd1
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-vst-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VST to PDF
+linktitle: Convert VST to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 14
+url: /net/converting-file-types-to-pdf/convert-vst-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VST file into PDF format.
+ /// For more details about Visio Drawing Template (.vst) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vst-to-pdf
+ ///
+ internal static class ConvertVstToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vst-converted-to.pdf");
+
+ // Load the source VST file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VST))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-vstm-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-vstm-to-pdf/_index.md
new file mode 100644
index 0000000..fab8b18
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-vstm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VSTM to PDF
+linktitle: Convert VSTM to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 13
+url: /net/converting-file-types-to-pdf/convert-vstm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VSTM file into PDF format.
+ /// For more details about Visio Macro-Enabled Drawing Template (.vstm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vstm-to-pdf
+ ///
+ internal static class ConvertVstmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vstm-converted-to.pdf");
+
+ // Load the source VSTM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VSTM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-vstx-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-vstx-to-pdf/_index.md
new file mode 100644
index 0000000..7c42f26
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-vstx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VSTX to PDF
+linktitle: Convert VSTX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 15
+url: /net/converting-file-types-to-pdf/convert-vstx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VSTX file into PDF format.
+ /// For more details about Microsoft Visio File Format (.vstx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vstx-to-pdf
+ ///
+ internal static class ConvertVstxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vstx-converted-to.pdf");
+
+ // Load the source VSTX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VSTX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-vsx-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-vsx-to-pdf/_index.md
new file mode 100644
index 0000000..1100110
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-vsx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VSX to PDF
+linktitle: Convert VSX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 16
+url: /net/converting-file-types-to-pdf/convert-vsx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VSX file into PDF format.
+ /// For more details about Vector Scalar Extension (.vsx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vsx-to-pdf
+ ///
+ internal static class ConvertVsxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vsx-converted-to.pdf");
+
+ // Load the source VSX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VSX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-vtx-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-vtx-to-pdf/_index.md
new file mode 100644
index 0000000..ad88460
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-vtx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VTX to PDF
+linktitle: Convert VTX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 17
+url: /net/converting-file-types-to-pdf/convert-vtx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VTX file into PDF format.
+ /// For more details about Microsoft Visio Drawing Template (.vtx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vtx-to-pdf
+ ///
+ internal static class ConvertVtxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vtx-converted-to.pdf");
+
+ // Load the source VTX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VTX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-webp-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-webp-to-pdf/_index.md
new file mode 100644
index 0000000..b49e86d
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-webp-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert WebP to PDF
+linktitle: Convert WebP to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 18
+url: /net/converting-file-types-to-pdf/convert-webp-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert WEBP file into PDF format.
+ /// For more details about Raster Web Image File Format (.webp) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-webp-to-pdf
+ ///
+ internal static class ConvertWebpToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "webp-converted-to.pdf");
+
+ // Load the source WEBP file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_WEBP))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-wmf-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-wmf-to-pdf/_index.md
new file mode 100644
index 0000000..857c425
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-wmf-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert WMF to PDF
+linktitle: Convert WMF to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 19
+url: /net/converting-file-types-to-pdf/convert-wmf-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert WMF file into PDF format.
+ /// For more details about Windows Metafile (.wmf) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-wmf-to-pdf
+ ///
+ internal static class ConvertWmfToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "wmf-converted-to.pdf");
+
+ // Load the source WMF file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_WMF))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-wmz-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-wmz-to-pdf/_index.md
new file mode 100644
index 0000000..d42c039
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-wmz-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert WMZ to PDF
+linktitle: Convert WMZ to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 20
+url: /net/converting-file-types-to-pdf/convert-wmz-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert WMZ file into PDF format.
+ /// For more details about Windows Metafile Compressed (.wmz) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-wmz-to-pdf
+ ///
+ internal static class ConvertWmzToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "wmz-converted-to.pdf");
+
+ // Load the source WMZ file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_WMZ))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-xlam-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-xlam-to-pdf/_index.md
new file mode 100644
index 0000000..9e51065
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-xlam-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert XLAM to PDF
+linktitle: Convert XLAM to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 21
+url: /net/converting-file-types-to-pdf/convert-xlam-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert XLAM file into PDF format.
+ /// For more details about Microsoft Excel Macro-Enabled Add-In (.xlam) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-xlam-to-pdf
+ ///
+ internal static class ConvertXlamToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "xlam-converted-to.pdf");
+
+ // Load the source XLAM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_XLAM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-xls-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-xls-to-pdf/_index.md
new file mode 100644
index 0000000..fdf510b
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-xls-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert XLS to PDF
+linktitle: Convert XLS to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 24
+url: /net/converting-file-types-to-pdf/convert-xls-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert XLS file into PDF format.
+ /// For more details about Microsoft Excel Binary File Format (.xls) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-xls-to-pdf
+ ///
+ internal static class ConvertXlsToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "xls-converted-to.pdf");
+
+ // Load the source XLS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_XLS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-xlsb-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-xlsb-to-pdf/_index.md
new file mode 100644
index 0000000..969ff6c
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-xlsb-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert XLSB to PDF
+linktitle: Convert XLSB to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 22
+url: /net/converting-file-types-to-pdf/convert-xlsb-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert XLSB file into PDF format.
+ /// For more details about Microsoft Excel Binary Spreadsheet File (.xlsb) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-xlsb-to-pdf
+ ///
+ internal static class ConvertXlsbToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "xlsb-converted-to.pdf");
+
+ // Load the source XLSB file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_XLSB))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-xlsm-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-xlsm-to-pdf/_index.md
new file mode 100644
index 0000000..95a64f0
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-xlsm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert XLSM to PDF
+linktitle: Convert XLSM to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 23
+url: /net/converting-file-types-to-pdf/convert-xlsm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert XLSM file into PDF format.
+ /// For more details about Microsoft Excel Macro-Enabled Spreadsheet (.xlsm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-xlsm-to-pdf
+ ///
+ internal static class ConvertXlsmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "xlsm-converted-to.pdf");
+
+ // Load the source XLSM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_XLSM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-xlsx-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-xlsx-to-pdf/_index.md
new file mode 100644
index 0000000..54430da
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-xlsx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert XLSX to PDF
+linktitle: Convert XLSX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 25
+url: /net/converting-file-types-to-pdf/convert-xlsx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert XLSX file into PDF format.
+ /// For more details about Microsoft Excel Open XML Spreadsheet (.xlsx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-xlsx-to-pdf
+ ///
+ internal static class ConvertXlsxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "xlsx-converted-to.pdf");
+
+ // Load the source XLSX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_XLSX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-xlt-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-xlt-to-pdf/_index.md
new file mode 100644
index 0000000..d031552
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-xlt-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert XLT to PDF
+linktitle: Convert XLT to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 27
+url: /net/converting-file-types-to-pdf/convert-xlt-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert XLT file into PDF format.
+ /// For more details about Microsoft Excel Template (.xlt) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-xlt-to-pdf
+ ///
+ internal static class ConvertXltToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "xlt-converted-to.pdf");
+
+ // Load the source XLT file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_XLT))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-xltm-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-xltm-to-pdf/_index.md
new file mode 100644
index 0000000..f10750a
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-xltm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert XLTM to PDF
+linktitle: Convert XLTM to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 26
+url: /net/converting-file-types-to-pdf/convert-xltm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert XLTM file into PDF format.
+ /// For more details about Microsoft Excel Macro-Enabled Template (.xltm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-xltm-to-pdf
+ ///
+ internal static class ConvertXltmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "xltm-converted-to.pdf");
+
+ // Load the source XLTM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_XLTM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-xltx-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-xltx-to-pdf/_index.md
new file mode 100644
index 0000000..b263794
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-xltx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert XLTX to PDF
+linktitle: Convert XLTX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 28
+url: /net/converting-file-types-to-pdf/convert-xltx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert XLTX file into PDF format.
+ /// For more details about Microsoft Excel Open XML Template (.xltx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-xltx-to-pdf
+ ///
+ internal static class ConvertXltxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "xltx-converted-to.pdf");
+
+ // Load the source XLTX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_XLTX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-xml-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-xml-to-pdf/_index.md
new file mode 100644
index 0000000..fe231a9
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-xml-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert XML to PDF
+linktitle: Convert XML to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 29
+url: /net/converting-file-types-to-pdf/convert-xml-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert XML file into PDF format.
+ /// For more details about Extended Markup Language (.xml) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-xml-to-pdf
+ ///
+ internal static class ConvertXmlToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "xml-converted-to.pdf");
+
+ // Load the source XML file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_XML))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/converting-file-types-to-pdf/convert-xps-to-pdf/_index.md b/content/english/net/converting-file-types-to-pdf/convert-xps-to-pdf/_index.md
new file mode 100644
index 0000000..86cabe3
--- /dev/null
+++ b/content/english/net/converting-file-types-to-pdf/convert-xps-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert XPS to PDF
+linktitle: Convert XPS to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 30
+url: /net/converting-file-types-to-pdf/convert-xps-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert XPS file into PDF format.
+ /// For more details about Open XML Paper Specification (.xps) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-xps-to-pdf
+ ///
+ internal static class ConvertXpsToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "xps-converted-to.pdf");
+
+ // Load the source XPS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_XPS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/_index.md b/content/english/net/document-conversion/_index.md
new file mode 100644
index 0000000..0af7327
--- /dev/null
+++ b/content/english/net/document-conversion/_index.md
@@ -0,0 +1,31 @@
+---
+title: Document Conversion
+linktitle: Document Conversion
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 23
+url: /net/document-conversion/
+---
+
+## Document Conversion Tutorials
+### [Convert JP2 to PDF](./convert-jp2-to-pdf/)
+### [Convert JPC to PDF](./convert-jpc-to-pdf/)
+### [Convert JPEG to PDF](./convert-jpeg-to-pdf/)
+### [Convert JPF to PDF](./convert-jpf-to-pdf/)
+### [Convert JPG to PDF](./convert-jpg-to-pdf/)
+### [Convert JPM to PDF](./convert-jpm-to-pdf/)
+### [Convert JPX to PDF](./convert-jpx-to-pdf/)
+### [Convert LOG to PDF](./convert-log-to-pdf/)
+### [Convert MBOX to PDF](./convert-mbox-to-pdf/)
+### [Convert MD to PDF](./convert-md-to-pdf/)
+### [Convert MHTML to PDF](./convert-mhtml-to-pdf/)
+### [Convert MHT to PDF](./convert-mht-to-pdf/)
+### [Convert MOBI to PDF](./convert-mobi-to-pdf/)
+### [Convert MPP to PDF](./convert-mpp-to-pdf/)
+### [Convert MPT to PDF](./convert-mpt-to-pdf/)
+### [Convert MPX to PDF](./convert-mpx-to-pdf/)
+### [Convert MSG to PDF](./convert-msg-to-pdf/)
+### [Convert ODG to PDF](./convert-odg-to-pdf/)
+### [Convert ODP to PDF](./convert-odp-to-pdf/)
+### [Convert ODS to PDF](./convert-ods-to-pdf/)
\ No newline at end of file
diff --git a/content/english/net/document-conversion/convert-jp2-to-pdf/_index.md b/content/english/net/document-conversion/convert-jp2-to-pdf/_index.md
new file mode 100644
index 0000000..1f7a46b
--- /dev/null
+++ b/content/english/net/document-conversion/convert-jp2-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert JP2 to PDF
+linktitle: Convert JP2 to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 10
+url: /net/document-conversion/convert-jp2-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert JP2 file into PDF format.
+ /// For more details about JPEG 2000 Core Image File (.jp2) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-jp2-to-pdf
+ ///
+ internal static class ConvertJp2ToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "jp2-converted-to.pdf");
+
+ // Load the source JP2 file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_JP2))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-jpc-to-pdf/_index.md b/content/english/net/document-conversion/convert-jpc-to-pdf/_index.md
new file mode 100644
index 0000000..adeeb1e
--- /dev/null
+++ b/content/english/net/document-conversion/convert-jpc-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert JPC to PDF
+linktitle: Convert JPC to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 11
+url: /net/document-conversion/convert-jpc-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert JPC file into PDF format.
+ /// For more details about JPEG 2000 Image File (.jpc) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-jpc-to-pdf
+ ///
+ internal static class ConvertJpcToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "jpc-converted-to.pdf");
+
+ // Load the source JPC file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_JPC))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-jpeg-to-pdf/_index.md b/content/english/net/document-conversion/convert-jpeg-to-pdf/_index.md
new file mode 100644
index 0000000..615a369
--- /dev/null
+++ b/content/english/net/document-conversion/convert-jpeg-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert JPEG to PDF
+linktitle: Convert JPEG to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 12
+url: /net/document-conversion/convert-jpeg-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert JPEG file into PDF format.
+ /// For more details about JPEG Image (.jpeg) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-jpeg-to-pdf
+ ///
+ internal static class ConvertJpegToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "jpeg-converted-to.pdf");
+
+ // Load the source JPEG file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_JPEG))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-jpf-to-pdf/_index.md b/content/english/net/document-conversion/convert-jpf-to-pdf/_index.md
new file mode 100644
index 0000000..eaa8742
--- /dev/null
+++ b/content/english/net/document-conversion/convert-jpf-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert JPF to PDF
+linktitle: Convert JPF to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 13
+url: /net/document-conversion/convert-jpf-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert JPF file into PDF format.
+ /// For more details about JPEG 2000 Image File (.jpf) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-jpf-to-pdf
+ ///
+ internal static class ConvertJpfToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "jpf-converted-to.pdf");
+
+ // Load the source JPF file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_JPF))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-jpg-to-pdf/_index.md b/content/english/net/document-conversion/convert-jpg-to-pdf/_index.md
new file mode 100644
index 0000000..46cc1ea
--- /dev/null
+++ b/content/english/net/document-conversion/convert-jpg-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert JPG to PDF
+linktitle: Convert JPG to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 14
+url: /net/document-conversion/convert-jpg-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert JPG file into PDF format.
+ /// For more details about Joint Photographic Expert Group Image File (.jpg) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-jpg-to-pdf
+ ///
+ internal static class ConvertJpgToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "jpg-converted-to.pdf");
+
+ // Load the source JPG file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_JPG))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-jpm-to-pdf/_index.md b/content/english/net/document-conversion/convert-jpm-to-pdf/_index.md
new file mode 100644
index 0000000..3afa12f
--- /dev/null
+++ b/content/english/net/document-conversion/convert-jpm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert JPM to PDF
+linktitle: Convert JPM to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 15
+url: /net/document-conversion/convert-jpm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert JPM file into PDF format.
+ /// For more details about JPEG 2000 Image File (.jpm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-jpm-to-pdf
+ ///
+ internal static class ConvertJpmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "jpm-converted-to.pdf");
+
+ // Load the source JPM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_JPM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-jpx-to-pdf/_index.md b/content/english/net/document-conversion/convert-jpx-to-pdf/_index.md
new file mode 100644
index 0000000..f2d3d79
--- /dev/null
+++ b/content/english/net/document-conversion/convert-jpx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert JPX to PDF
+linktitle: Convert JPX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 16
+url: /net/document-conversion/convert-jpx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert JPX file into PDF format.
+ /// For more details about JPEG 2000 Image File (.jpx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-jpx-to-pdf
+ ///
+ internal static class ConvertJpxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "jpx-converted-to.pdf");
+
+ // Load the source JPX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_JPX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-log-to-pdf/_index.md b/content/english/net/document-conversion/convert-log-to-pdf/_index.md
new file mode 100644
index 0000000..d073439
--- /dev/null
+++ b/content/english/net/document-conversion/convert-log-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert LOG to PDF
+linktitle: Convert LOG to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 17
+url: /net/document-conversion/convert-log-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert LOG file into PDF format.
+ /// For more details about Log File (.log) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-log-to-pdf
+ ///
+ internal static class ConvertLogToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "log-converted-to.pdf");
+
+ // Load the source LOG file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_LOG))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-mbox-to-pdf/_index.md b/content/english/net/document-conversion/convert-mbox-to-pdf/_index.md
new file mode 100644
index 0000000..2594b52
--- /dev/null
+++ b/content/english/net/document-conversion/convert-mbox-to-pdf/_index.md
@@ -0,0 +1,52 @@
+---
+title: Convert MBOX to PDF
+linktitle: Convert MBOX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 18
+url: /net/document-conversion/convert-mbox-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.FileTypes;
+using GroupDocs.Conversion.Options.Convert;
+using GroupDocs.Conversion.Options.Load;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert MBOX file into PDF format.
+ /// For more details about Email Mailbox File (.mbox) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-mbox-to-pdf
+ ///
+ internal static class ConvertMboxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "mbox-converted-{0}-to.pdf");
+
+ // Load the source MBOX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_MBOX, fileType => fileType == EmailFileType.Mbox
+ ? new MboxLoadOptions()
+ : null))
+ {
+ var options = new PdfConvertOptions();
+ var counter = 1;
+ // Save converted PDF file
+ converter.Convert(
+ (FileType fileType) => new FileStream(string.Format(outputFile, counter++), FileMode.Create),
+ options
+ );
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-md-to-pdf/_index.md b/content/english/net/document-conversion/convert-md-to-pdf/_index.md
new file mode 100644
index 0000000..cc203a1
--- /dev/null
+++ b/content/english/net/document-conversion/convert-md-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert MD to PDF
+linktitle: Convert MD to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 19
+url: /net/document-conversion/convert-md-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert MD file into PDF format.
+ /// For more details about Markdown (.md) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-md-to-pdf
+ ///
+ internal static class ConvertMdToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "md-converted-to.pdf");
+
+ // Load the source MD file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_MD))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-mht-to-pdf/_index.md b/content/english/net/document-conversion/convert-mht-to-pdf/_index.md
new file mode 100644
index 0000000..2b11c69
--- /dev/null
+++ b/content/english/net/document-conversion/convert-mht-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert MHT to PDF
+linktitle: Convert MHT to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 21
+url: /net/document-conversion/convert-mht-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert MHT file into PDF format.
+ /// For more details about MIME Encapsulation of Aggregate HTML (.mht) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-mht-to-pdf
+ ///
+ internal static class ConvertMhtToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "mht-converted-to.pdf");
+
+ // Load the source MHT file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_MHT))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-mhtml-to-pdf/_index.md b/content/english/net/document-conversion/convert-mhtml-to-pdf/_index.md
new file mode 100644
index 0000000..7b350ff
--- /dev/null
+++ b/content/english/net/document-conversion/convert-mhtml-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert MHTML to PDF
+linktitle: Convert MHTML to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 20
+url: /net/document-conversion/convert-mhtml-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert MHTML file into PDF format.
+ /// For more details about MIME Encapsulation of Aggregate HTML (.mhtml) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-mhtml-to-pdf
+ ///
+ internal static class ConvertMhtmlToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "mhtml-converted-to.pdf");
+
+ // Load the source MHTML file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_MHTML))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-mobi-to-pdf/_index.md b/content/english/net/document-conversion/convert-mobi-to-pdf/_index.md
new file mode 100644
index 0000000..70abaf6
--- /dev/null
+++ b/content/english/net/document-conversion/convert-mobi-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert MOBI to PDF
+linktitle: Convert MOBI to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 22
+url: /net/document-conversion/convert-mobi-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert MOBI file into PDF format.
+ /// For more details about Mobipocket eBook (.mobi) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-mobi-to-pdf
+ ///
+ internal static class ConvertMobiToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "mobi-converted-to.pdf");
+
+ // Load the source MOBI file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_MOBI))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-mpp-to-pdf/_index.md b/content/english/net/document-conversion/convert-mpp-to-pdf/_index.md
new file mode 100644
index 0000000..3ec025c
--- /dev/null
+++ b/content/english/net/document-conversion/convert-mpp-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert MPP to PDF
+linktitle: Convert MPP to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 23
+url: /net/document-conversion/convert-mpp-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert MPP file into PDF format.
+ /// For more details about Microsoft Project File (.mpp) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-mpp-to-pdf
+ ///
+ internal static class ConvertMppToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "mpp-converted-to.pdf");
+
+ // Load the source MPP file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_MPP))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-mpt-to-pdf/_index.md b/content/english/net/document-conversion/convert-mpt-to-pdf/_index.md
new file mode 100644
index 0000000..6a6e491
--- /dev/null
+++ b/content/english/net/document-conversion/convert-mpt-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert MPT to PDF
+linktitle: Convert MPT to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 24
+url: /net/document-conversion/convert-mpt-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert MPT file into PDF format.
+ /// For more details about Microsoft Project Template (.mpt) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-mpt-to-pdf
+ ///
+ internal static class ConvertMptToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "mpt-converted-to.pdf");
+
+ // Load the source MPT file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_MPT))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-mpx-to-pdf/_index.md b/content/english/net/document-conversion/convert-mpx-to-pdf/_index.md
new file mode 100644
index 0000000..e6b1845
--- /dev/null
+++ b/content/english/net/document-conversion/convert-mpx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert MPX to PDF
+linktitle: Convert MPX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 25
+url: /net/document-conversion/convert-mpx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert MPX file into PDF format.
+ /// For more details about Microsoft Project Exchange File (.mpx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-mpx-to-pdf
+ ///
+ internal static class ConvertMpxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "mpx-converted-to.pdf");
+
+ // Load the source MPX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_MPX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-msg-to-pdf/_index.md b/content/english/net/document-conversion/convert-msg-to-pdf/_index.md
new file mode 100644
index 0000000..d816259
--- /dev/null
+++ b/content/english/net/document-conversion/convert-msg-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert MSG to PDF
+linktitle: Convert MSG to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 26
+url: /net/document-conversion/convert-msg-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert MSG file into PDF format.
+ /// For more details about Microsoft Outlook Email Format (.msg) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-msg-to-pdf
+ ///
+ internal static class ConvertMsgToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "msg-converted-to.pdf");
+
+ // Load the source MSG file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_MSG))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-odg-to-pdf/_index.md b/content/english/net/document-conversion/convert-odg-to-pdf/_index.md
new file mode 100644
index 0000000..953e880
--- /dev/null
+++ b/content/english/net/document-conversion/convert-odg-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert ODG to PDF
+linktitle: Convert ODG to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 27
+url: /net/document-conversion/convert-odg-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert ODG file into PDF format.
+ /// For more details about OpenDocument Drawing File (.odg) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-odg-to-pdf
+ ///
+ internal static class ConvertOdgToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "odg-converted-to.pdf");
+
+ // Load the source ODG file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_ODG))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-odp-to-pdf/_index.md b/content/english/net/document-conversion/convert-odp-to-pdf/_index.md
new file mode 100644
index 0000000..43c09c6
--- /dev/null
+++ b/content/english/net/document-conversion/convert-odp-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert ODP to PDF
+linktitle: Convert ODP to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 28
+url: /net/document-conversion/convert-odp-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert ODP file into PDF format.
+ /// For more details about OpenDocument Presentation File Format (.odp) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-odp-to-pdf
+ ///
+ internal static class ConvertOdpToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "odp-converted-to.pdf");
+
+ // Load the source ODP file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_ODP))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/document-conversion/convert-ods-to-pdf/_index.md b/content/english/net/document-conversion/convert-ods-to-pdf/_index.md
new file mode 100644
index 0000000..bcacf16
--- /dev/null
+++ b/content/english/net/document-conversion/convert-ods-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert ODS to PDF
+linktitle: Convert ODS to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 29
+url: /net/document-conversion/convert-ods-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert ODS file into PDF format.
+ /// For more details about Open Document Spreadsheet (.ods) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-ods-to-pdf
+ ///
+ internal static class ConvertOdsToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "ods-converted-to.pdf");
+
+ // Load the source ODS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_ODS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/_index.md
new file mode 100644
index 0000000..a93dbf8
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/_index.md
@@ -0,0 +1,30 @@
+---
+title: File Conversion to PDF
+linktitle: File Conversion to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 20
+url: /net/file-conversion-to-pdf/
+---
+
+## File Conversion to PDF Tutorials
+### [Convert AI Files to PDF](./convert-ai-to-pdf/)
+### [Convert BMP Images to PDF](./convert-bmp-to-pdf/)
+### [Convert CDR Vector Graphics to PDF](./convert-cdr-to-pdf/)
+### [Convert CF2 to PDF](./convert-cf2-to-pdf/)
+### [Convert CGM Vector Graphics to PDF](./convert-cgm-to-pdf/)
+### [Convert CMX to PDF](./convert-cmx-to-pdf/)
+### [Convert CSV Data Files to PDF](./convert-csv-to-pdf/)
+### [Convert DGN CAD Files to PDF](./convert-dgn-to-pdf/)
+### [Convert DIB Images to PDF](./convert-dib-to-pdf/)
+### [Convert DICOM Medical Images to PDF](./convert-dicom-to-pdf/)
+### [Convert DJVU Documents to PDF](./convert-djvu-to-pdf/)
+### [Convert DNG Images to PDF](./convert-dng-to-pdf/)
+### [Convert DOCM Word Documents (Macros) to PDF](./convert-docm-to-pdf/)
+### [Convert DOC Word Documents to PDF](./convert-doc-to-pdf/)
+### [Convert DOCX Word Documents to PDF](./convert-docx-to-pdf/)
+### [Convert DOTM Word Templates (Macros) to PDF](./convert-dotm-to-pdf/)
+### [Convert DOT Word Templates to PDF](./convert-dot-to-pdf/)
+### [Convert DOTX Word Templates to PDF](./convert-dotx-to-pdf/)
+### [Convert DWF CAD Files to PDF](./convert-dwf-to-pdf/)
\ No newline at end of file
diff --git a/content/english/net/file-conversion-to-pdf/convert-ai-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-ai-to-pdf/_index.md
new file mode 100644
index 0000000..1a7abb9
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-ai-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert AI Files to PDF
+linktitle: Convert AI Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 10
+url: /net/file-conversion-to-pdf/convert-ai-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert AI file into PDF format.
+ /// For more details about Adobe Illustrator (.ai) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-ai-to-pdf
+ ///
+ internal static class ConvertAiToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "ai-converted-to.pdf");
+
+ // Load the source AI file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_AI))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-bmp-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-bmp-to-pdf/_index.md
new file mode 100644
index 0000000..2bbdb86
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-bmp-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert BMP Images to PDF
+linktitle: Convert BMP Images to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 11
+url: /net/file-conversion-to-pdf/convert-bmp-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert BMP file into PDF format.
+ /// For more details about Bitmap File Format (.bmp) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-bmp-to-pdf
+ ///
+ internal static class ConvertBmpToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "bmp-converted-to.pdf");
+
+ // Load the source BMP file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_BMP))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-cdr-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-cdr-to-pdf/_index.md
new file mode 100644
index 0000000..17533de
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-cdr-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert CDR Vector Graphics to PDF
+linktitle: Convert CDR Vector Graphics to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 12
+url: /net/file-conversion-to-pdf/convert-cdr-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert CDR file into PDF format.
+ /// For more details about CorelDraw Vector Graphic Drawing (.cdr) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-cdr-to-pdf
+ ///
+ internal static class ConvertCdrToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "cdr-converted-to.pdf");
+
+ // Load the source CDR file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_CDR))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-cf2-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-cf2-to-pdf/_index.md
new file mode 100644
index 0000000..9faf900
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-cf2-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert CF2 to PDF
+linktitle: Convert CF2 to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 13
+url: /net/file-conversion-to-pdf/convert-cf2-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert CF2 file into PDF format.
+ /// For more details about Common File Format File (.cf2) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-cf2-to-pdf
+ ///
+ internal static class ConvertCf2ToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "cf2-converted-to.pdf");
+
+ // Load the source CF2 file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_CF2))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-cgm-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-cgm-to-pdf/_index.md
new file mode 100644
index 0000000..c9d3f9f
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-cgm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert CGM Vector Graphics to PDF
+linktitle: Convert CGM Vector Graphics to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 14
+url: /net/file-conversion-to-pdf/convert-cgm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert CGM file into PDF format.
+ /// For more details about Computer Graphics Metafile (.cgm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-cgm-to-pdf
+ ///
+ internal static class ConvertCgmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "cgm-converted-to.pdf");
+
+ // Load the source CGM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_CGM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-cmx-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-cmx-to-pdf/_index.md
new file mode 100644
index 0000000..638aacf
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-cmx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert CMX to PDF
+linktitle: Convert CMX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 15
+url: /net/file-conversion-to-pdf/convert-cmx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert CMX file into PDF format.
+ /// For more details about Corel Metafile Exchange Image File (.cmx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-cmx-to-pdf
+ ///
+ internal static class ConvertCmxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "cmx-converted-to.pdf");
+
+ // Load the source CMX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_CMX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-csv-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-csv-to-pdf/_index.md
new file mode 100644
index 0000000..252a86d
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-csv-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert CSV Data Files to PDF
+linktitle: Convert CSV Data Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 16
+url: /net/file-conversion-to-pdf/convert-csv-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert CSV file into PDF format.
+ /// For more details about Comma Separated Values File (.csv) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-csv-to-pdf
+ ///
+ internal static class ConvertCsvToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "csv-converted-to.pdf");
+
+ // Load the source CSV file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_CSV))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-dgn-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-dgn-to-pdf/_index.md
new file mode 100644
index 0000000..ea05aa4
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-dgn-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DGN CAD Files to PDF
+linktitle: Convert DGN CAD Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 17
+url: /net/file-conversion-to-pdf/convert-dgn-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DGN file into PDF format.
+ /// For more details about MicroStation Design File (.dgn) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-dgn-to-pdf
+ ///
+ internal static class ConvertDgnToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "dgn-converted-to.pdf");
+
+ // Load the source DGN file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DGN))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-dib-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-dib-to-pdf/_index.md
new file mode 100644
index 0000000..545fc1b
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-dib-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DIB Images to PDF
+linktitle: Convert DIB Images to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 18
+url: /net/file-conversion-to-pdf/convert-dib-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DIB file into PDF format.
+ /// For more details about Device Independent Bitmap File (.dib) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-dib-to-pdf
+ ///
+ internal static class ConvertDibToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "dib-converted-to.pdf");
+
+ // Load the source DIB file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DIB))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-dicom-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-dicom-to-pdf/_index.md
new file mode 100644
index 0000000..e308f09
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-dicom-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DICOM Medical Images to PDF
+linktitle: Convert DICOM Medical Images to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 19
+url: /net/file-conversion-to-pdf/convert-dicom-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DICOM file into PDF format.
+ /// For more details about Digital Imaging and Communications in Medicine (.dicom) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-dicom-to-pdf
+ ///
+ internal static class ConvertDicomToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "dicom-converted-to.pdf");
+
+ // Load the source DICOM file
+ using (Converter converter = new Converter(Constants.SAMPLE_DICOM))
+ {
+ PdfConvertOptions options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-djvu-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-djvu-to-pdf/_index.md
new file mode 100644
index 0000000..bcca9f3
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-djvu-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DJVU Documents to PDF
+linktitle: Convert DJVU Documents to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 20
+url: /net/file-conversion-to-pdf/convert-djvu-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DJVU file into PDF format.
+ /// For more details about Graphics File format (.djvu) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-djvu-to-pdf
+ ///
+ internal static class ConvertDjvuToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "djvu-converted-to.pdf");
+
+ // Load the source DJVU file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DJVU))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-dng-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-dng-to-pdf/_index.md
new file mode 100644
index 0000000..c96a248
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-dng-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DNG Images to PDF
+linktitle: Convert DNG Images to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 21
+url: /net/file-conversion-to-pdf/convert-dng-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DNG file into PDF format.
+ /// For more details about Digital Camera Image Format (.dng) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-dng-to-pdf
+ ///
+ internal static class ConvertDngToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "dng-converted-to.pdf");
+
+ // Load the source DNG file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DNG))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-doc-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-doc-to-pdf/_index.md
new file mode 100644
index 0000000..3ec1c66
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-doc-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DOC Word Documents to PDF
+linktitle: Convert DOC Word Documents to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 23
+url: /net/file-conversion-to-pdf/convert-doc-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DOC file into PDF format.
+ /// For more details about Microsoft Word Document (.doc) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-doc-to-pdf
+ ///
+ internal static class ConvertDocToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "doc-converted-to.pdf");
+
+ // Load the source DOC file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DOC))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-docm-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-docm-to-pdf/_index.md
new file mode 100644
index 0000000..45d2b32
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-docm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DOCM Word Documents (Macros) to PDF
+linktitle: Convert DOCM Word Documents (Macros) to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 22
+url: /net/file-conversion-to-pdf/convert-docm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DOCM file into PDF format.
+ /// For more details about Microsoft Word Macro-Enabled Document (.docm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-docm-to-pdf
+ ///
+ internal static class ConvertDocmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "docm-converted-to.pdf");
+
+ // Load the source DOCM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DOCM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-docx-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-docx-to-pdf/_index.md
new file mode 100644
index 0000000..31d8ff3
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-docx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DOCX Word Documents to PDF
+linktitle: Convert DOCX Word Documents to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 24
+url: /net/file-conversion-to-pdf/convert-docx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DOCX file into PDF format.
+ /// For more details about Microsoft Word Open XML Document (.docx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-docx-to-pdf
+ ///
+ internal static class ConvertDocxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "docx-converted-to.pdf");
+
+ // Load the source DOCX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DOCX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-dot-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-dot-to-pdf/_index.md
new file mode 100644
index 0000000..76c9c87
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-dot-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DOT Word Templates to PDF
+linktitle: Convert DOT Word Templates to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 26
+url: /net/file-conversion-to-pdf/convert-dot-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DOT file into PDF format.
+ /// For more details about Microsoft Word Document Template (.dot) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-dot-to-pdf
+ ///
+ internal static class ConvertDotToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "dot-converted-to.pdf");
+
+ // Load the source DOT file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DOT))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-dotm-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-dotm-to-pdf/_index.md
new file mode 100644
index 0000000..b214011
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-dotm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DOTM Word Templates (Macros) to PDF
+linktitle: Convert DOTM Word Templates (Macros) to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 25
+url: /net/file-conversion-to-pdf/convert-dotm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DOTM file into PDF format.
+ /// For more details about Microsoft Word Macro-Enabled Template (.dotm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-dotm-to-pdf
+ ///
+ internal static class ConvertDotmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "dotm-converted-to.pdf");
+
+ // Load the source DOTM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DOTM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-dotx-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-dotx-to-pdf/_index.md
new file mode 100644
index 0000000..f2967cb
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-dotx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DOTX Word Templates to PDF
+linktitle: Convert DOTX Word Templates to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 27
+url: /net/file-conversion-to-pdf/convert-dotx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DOTX file into PDF format.
+ /// For more details about Word Open XML Document Template (.dotx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-dotx-to-pdf
+ ///
+ internal static class ConvertDotxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "dotx-converted-to.pdf");
+
+ // Load the source DOTX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DOTX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-conversion-to-pdf/convert-dwf-to-pdf/_index.md b/content/english/net/file-conversion-to-pdf/convert-dwf-to-pdf/_index.md
new file mode 100644
index 0000000..c6359da
--- /dev/null
+++ b/content/english/net/file-conversion-to-pdf/convert-dwf-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert DWF CAD Files to PDF
+linktitle: Convert DWF CAD Files to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 28
+url: /net/file-conversion-to-pdf/convert-dwf-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert DWF file into PDF format.
+ /// For more details about Design Web Format (.dwf) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-dwf-to-pdf
+ ///
+ internal static class ConvertDwfToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "dwf-converted-to.pdf");
+
+ // Load the source DWF file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_DWF))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/_index.md b/content/english/net/file-format-conversion-tutorials/_index.md
new file mode 100644
index 0000000..1c0183e
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/_index.md
@@ -0,0 +1,30 @@
+---
+title: File Format Conversion
+linktitle: File Format Conversion
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 21
+url: /net/file-format-conversion-tutorials/
+---
+
+## File Format Conversion Tutorials
+### [Convert PSD to PDF](./convert-psd-to-pdf/)
+### [Convert PS to PDF](./convert-ps-to-pdf/)
+### [Convert PST to PDF](./convert-pst-to-pdf/)
+### [Convert RTF to PDF](./convert-rtf-to-pdf/)
+### [Convert STL to PDF](./convert-stl-to-pdf/)
+### [Convert SVG to PDF](./convert-svg-to-pdf/)
+### [Convert SVGZ to PDF](./convert-svgz-to-pdf/)
+### [Convert SXC to PDF](./convert-sxc-to-pdf/)
+### [Convert TEX to PDF](./convert-tex-to-pdf/)
+### [Convert TIFF to PDF](./convert-tiff-to-pdf/)
+### [Convert TIF to PDF](./convert-tif-to-pdf/)
+### [Convert TSV to PDF](./convert-tsv-to-pdf/)
+### [Convert TXT to PDF](./convert-txt-to-pdf/)
+### [Convert VCF to PDF](./convert-vcf-to-pdf/)
+### [Convert VDW to PDF](./convert-vdw-to-pdf/)
+### [Convert VDX to PDF](./convert-vdx-to-pdf/)
+### [Convert VSDM to PDF](./convert-vsdm-to-pdf/)
+### [Convert VSD to PDF](./convert-vsd-to-pdf/)
+### [Convert VSDX to PDF](./convert-vsdx-to-pdf/)
\ No newline at end of file
diff --git a/content/english/net/file-format-conversion-tutorials/convert-ps-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-ps-to-pdf/_index.md
new file mode 100644
index 0000000..c326e4b
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-ps-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert PS to PDF
+linktitle: Convert PS to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 11
+url: /net/file-format-conversion-tutorials/convert-ps-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PS file into PDF format.
+ /// For more details about PostScript (PS) (.ps) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-ps-to-pdf
+ ///
+ internal static class ConvertPsToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "ps-converted-to.pdf");
+
+ // Load the source PS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-psd-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-psd-to-pdf/_index.md
new file mode 100644
index 0000000..844ee79
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-psd-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert PSD to PDF
+linktitle: Convert PSD to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 10
+url: /net/file-format-conversion-tutorials/convert-psd-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PSD file into PDF format.
+ /// For more details about Adobe Photoshop Document (.psd) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-psd-to-pdf
+ ///
+ internal static class ConvertPsdToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "psd-converted-to.pdf");
+
+ // Load the source PSD file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PSD))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-pst-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-pst-to-pdf/_index.md
new file mode 100644
index 0000000..a1c4590
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-pst-to-pdf/_index.md
@@ -0,0 +1,52 @@
+---
+title: Convert PST to PDF
+linktitle: Convert PST to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 12
+url: /net/file-format-conversion-tutorials/convert-pst-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.FileTypes;
+using GroupDocs.Conversion.Options.Convert;
+using GroupDocs.Conversion.Options.Load;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PST file into PDF format.
+ /// For more details about Personal Storage File (.pst) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-pst-to-pdf
+ ///
+ internal static class ConvertPstToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "pst-converted-{0}-to.pdf");
+
+ // Load the source PST file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PST, fileType => fileType == EmailFileType.Pst
+ ? new PersonalStorageLoadOptions()
+ : null))
+ {
+ var options = new PdfConvertOptions();
+ var counter = 1;
+ // Save converted PDF file
+ converter.Convert(
+ (FileType fileType) => new FileStream(string.Format(outputFile, counter++), FileMode.Create),
+ options
+ );
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-rtf-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-rtf-to-pdf/_index.md
new file mode 100644
index 0000000..0030ede
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-rtf-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert RTF to PDF
+linktitle: Convert RTF to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 13
+url: /net/file-format-conversion-tutorials/convert-rtf-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert RTF file into PDF format.
+ /// For more details about Rich Text File Format (.rtf) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-rtf-to-pdf
+ ///
+ internal static class ConvertRtfToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "rtf-converted-to.pdf");
+
+ // Load the source RTF file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_RTF))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-stl-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-stl-to-pdf/_index.md
new file mode 100644
index 0000000..059d401
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-stl-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert STL to PDF
+linktitle: Convert STL to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 14
+url: /net/file-format-conversion-tutorials/convert-stl-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert STL file into PDF format.
+ /// For more details about Stereolithography (.stl) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-stl-to-pdf
+ ///
+ internal static class ConvertStlToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "stl-converted-to.pdf");
+
+ // Load the source STL file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_STL))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-svg-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-svg-to-pdf/_index.md
new file mode 100644
index 0000000..2637154
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-svg-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert SVG to PDF
+linktitle: Convert SVG to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 15
+url: /net/file-format-conversion-tutorials/convert-svg-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert SVG file into PDF format.
+ /// For more details about Scalable Vector Graphics File (.svg) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-svg-to-pdf
+ ///
+ internal static class ConvertSvgToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "svg-converted-to.pdf");
+
+ // Load the source SVG file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_SVG))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-svgz-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-svgz-to-pdf/_index.md
new file mode 100644
index 0000000..d2b4058
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-svgz-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert SVGZ to PDF
+linktitle: Convert SVGZ to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 16
+url: /net/file-format-conversion-tutorials/convert-svgz-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert SVGZ file into PDF format.
+ /// For more details about Compressed Scalable Vector Graphics File (.svgz) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-svgz-to-pdf
+ ///
+ internal static class ConvertSvgzToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "svgz-converted-to.pdf");
+
+ // Load the source SVGZ file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_SVGZ))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-sxc-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-sxc-to-pdf/_index.md
new file mode 100644
index 0000000..ae98c2a
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-sxc-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert SXC to PDF
+linktitle: Convert SXC to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 17
+url: /net/file-format-conversion-tutorials/convert-sxc-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert SXC file into PDF format.
+ /// For more details about StarOffice Calc Spreadsheet (.sxc) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-sxc-to-pdf
+ ///
+ internal static class ConvertSxcToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "sxc-converted-to.pdf");
+
+ // Load the source SXC file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_SXC))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-tex-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-tex-to-pdf/_index.md
new file mode 100644
index 0000000..a0a1d70
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-tex-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert TEX to PDF
+linktitle: Convert TEX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 18
+url: /net/file-format-conversion-tutorials/convert-tex-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert TEX file into PDF format.
+ /// For more details about LaTeX Source Document (.tex) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-tex-to-pdf
+ ///
+ internal static class ConvertTexToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "tex-converted-to.pdf");
+
+ // Load the source TEX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_TEX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-tif-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-tif-to-pdf/_index.md
new file mode 100644
index 0000000..1445f6c
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-tif-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert TIF to PDF
+linktitle: Convert TIF to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 20
+url: /net/file-format-conversion-tutorials/convert-tif-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert TIF file into PDF format.
+ /// For more details about Tagged Image File Format (.tif) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-tif-to-pdf
+ ///
+ internal static class ConvertTifToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "tif-converted-to.pdf");
+
+ // Load the source TIF file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_TIF))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-tiff-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-tiff-to-pdf/_index.md
new file mode 100644
index 0000000..59184a9
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-tiff-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert TIFF to PDF
+linktitle: Convert TIFF to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 19
+url: /net/file-format-conversion-tutorials/convert-tiff-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert TIFF file into PDF format.
+ /// For more details about Tagged Image File Format (.tiff) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-tiff-to-pdf
+ ///
+ internal static class ConvertTiffToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "tiff-converted-to.pdf");
+
+ // Load the source TIFF file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_TIFF))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-tsv-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-tsv-to-pdf/_index.md
new file mode 100644
index 0000000..af7327e
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-tsv-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert TSV to PDF
+linktitle: Convert TSV to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 21
+url: /net/file-format-conversion-tutorials/convert-tsv-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert TSV file into PDF format.
+ /// For more details about Tab Separated Values File (.tsv) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-tsv-to-pdf
+ ///
+ internal static class ConvertTsvToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "tsv-converted-to.pdf");
+
+ // Load the source TSV file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_TSV))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-txt-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-txt-to-pdf/_index.md
new file mode 100644
index 0000000..3ee4b7b
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-txt-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert TXT to PDF
+linktitle: Convert TXT to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 22
+url: /net/file-format-conversion-tutorials/convert-txt-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert TXT file into PDF format.
+ /// For more details about Plain Text File Format (.txt) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-txt-to-pdf
+ ///
+ internal static class ConvertTxtToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "txt-converted-to.pdf");
+
+ // Load the source TXT file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_TXT))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-vcf-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-vcf-to-pdf/_index.md
new file mode 100644
index 0000000..1bd0634
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-vcf-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VCF to PDF
+linktitle: Convert VCF to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 23
+url: /net/file-format-conversion-tutorials/convert-vcf-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VCF file into PDF format.
+ /// For more details about vCard File (.vcf) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vcf-to-pdf
+ ///
+ internal static class ConvertVcfToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vcf-converted-to.pdf");
+
+ // Load the source VCF file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VCF))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-vdw-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-vdw-to-pdf/_index.md
new file mode 100644
index 0000000..d90c93f
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-vdw-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VDW to PDF
+linktitle: Convert VDW to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 24
+url: /net/file-format-conversion-tutorials/convert-vdw-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VDW file into PDF format.
+ /// For more details about Visio Web Drawing (.vdw) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vdw-to-pdf
+ ///
+ internal static class ConvertVdwToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vdw-converted-to.pdf");
+
+ // Load the source VDW file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VDW))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-vdx-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-vdx-to-pdf/_index.md
new file mode 100644
index 0000000..88364f4
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-vdx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VDX to PDF
+linktitle: Convert VDX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 25
+url: /net/file-format-conversion-tutorials/convert-vdx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VDX file into PDF format.
+ /// For more details about Microsoft Visio XML Drawing File Format (.vdx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vdx-to-pdf
+ ///
+ internal static class ConvertVdxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vdx-converted-to.pdf");
+
+ // Load the source VDX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VDX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-vsd-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-vsd-to-pdf/_index.md
new file mode 100644
index 0000000..5d9dff8
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-vsd-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VSD to PDF
+linktitle: Convert VSD to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 27
+url: /net/file-format-conversion-tutorials/convert-vsd-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VSD file into PDF format.
+ /// For more details about Visio Drawing File Format (.vsd) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vsd-to-pdf
+ ///
+ internal static class ConvertVsdToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vsd-converted-to.pdf");
+
+ // Load the source VSD file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VSD))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-vsdm-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-vsdm-to-pdf/_index.md
new file mode 100644
index 0000000..4aeb09b
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-vsdm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VSDM to PDF
+linktitle: Convert VSDM to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 26
+url: /net/file-format-conversion-tutorials/convert-vsdm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VSDM file into PDF format.
+ /// For more details about Visio Macro-Enabled Drawing (.vsdm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vsdm-to-pdf
+ ///
+ internal static class ConvertVsdmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vsdm-converted-to.pdf");
+
+ // Load the source VSDM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VSDM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/file-format-conversion-tutorials/convert-vsdx-to-pdf/_index.md b/content/english/net/file-format-conversion-tutorials/convert-vsdx-to-pdf/_index.md
new file mode 100644
index 0000000..d672142
--- /dev/null
+++ b/content/english/net/file-format-conversion-tutorials/convert-vsdx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert VSDX to PDF
+linktitle: Convert VSDX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 28
+url: /net/file-format-conversion-tutorials/convert-vsdx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert VSDX file into PDF format.
+ /// For more details about Microsoft Visio File Format (.vsdx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-vsdx-to-pdf
+ ///
+ internal static class ConvertVsdxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "vsdx-converted-to.pdf");
+
+ // Load the source VSDX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_VSDX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/_index.md b/content/english/net/pdf-conversion/_index.md
new file mode 100644
index 0000000..8b2302d
--- /dev/null
+++ b/content/english/net/pdf-conversion/_index.md
@@ -0,0 +1,31 @@
+---
+title: PDF Conversion
+linktitle: PDF Conversion
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 25
+url: /net/pdf-conversion/
+---
+
+## PDF Conversion Tutorials
+### [Convert ODT to PDF](./convert-odt-to-pdf/)
+### [Convert ONE to PDF](./convert-one-to-pdf/)
+### [Convert OST to PDF](./convert-ost-to-pdf/)
+### [Convert OTG to PDF](./convert-otg-to-pdf/)
+### [Convert OTP to PDF](./convert-otp-to-pdf/)
+### [Convert OTS to PDF](./convert-ots-to-pdf/)
+### [Convert OTT to PDF](./convert-ott-to-pdf/)
+### [Convert OXPS to PDF](./convert-oxps-to-pdf/)
+### [Convert PCL to PDF](./convert-pcl-to-pdf/)
+### [Convert PLT to PDF](./convert-plt-to-pdf/)
+### [Convert PNG to PDF](./convert-png-to-pdf/)
+### [Convert POTM to PDF](./convert-potm-to-pdf/)
+### [Convert POT to PDF](./convert-pot-to-pdf/)
+### [Convert POTX to PDF](./convert-potx-to-pdf/)
+### [Convert PPSM to PDF](./convert-ppsm-to-pdf/)
+### [Convert PPS to PDF](./convert-pps-to-pdf/)
+### [Convert PPSX to PDF](./convert-ppsx-to-pdf/)
+### [Convert PPTM to PDF](./convert-pptm-to-pdf/)
+### [Convert PPT to PDF](./convert-ppt-to-pdf/)
+### [Convert PPTX to PDF](./convert-pptx-to-pdf/)
\ No newline at end of file
diff --git a/content/english/net/pdf-conversion/convert-odt-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-odt-to-pdf/_index.md
new file mode 100644
index 0000000..e26c5ee
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-odt-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert ODT to PDF
+linktitle: Convert ODT to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 10
+url: /net/pdf-conversion/convert-odt-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert ODT file into PDF format.
+ /// For more details about Open Document Text (.odt) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-odt-to-pdf
+ ///
+ internal static class ConvertOdtToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "odt-converted-to.pdf");
+
+ // Load the source ODT file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_ODT))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-one-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-one-to-pdf/_index.md
new file mode 100644
index 0000000..b4247ae
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-one-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert ONE to PDF
+linktitle: Convert ONE to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 11
+url: /net/pdf-conversion/convert-one-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert ONE file into PDF format.
+ /// For more details about Microsoft OneNote File Format (.one) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-one-to-pdf
+ ///
+ internal static class ConvertOneToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "one-converted-to.pdf");
+
+ // Load the source ONE file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_ONE))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-ost-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-ost-to-pdf/_index.md
new file mode 100644
index 0000000..f04dbc6
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-ost-to-pdf/_index.md
@@ -0,0 +1,52 @@
+---
+title: Convert OST to PDF
+linktitle: Convert OST to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 12
+url: /net/pdf-conversion/convert-ost-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.FileTypes;
+using GroupDocs.Conversion.Options.Convert;
+using GroupDocs.Conversion.Options.Load;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert OST file into PDF format.
+ /// For more details about Outlook Offline Storage File (.ost) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-ost-to-pdf
+ ///
+ internal static class ConvertOstToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "ost-converted-{0}-to.pdf");
+
+ // Load the source OST file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_OST, fileType => fileType == EmailFileType.Ost
+ ? new PersonalStorageLoadOptions()
+ : null))
+ {
+ var options = new PdfConvertOptions();
+ var counter = 1;
+ // Save converted PDF file
+ converter.Convert(
+ (FileType fileType) => new FileStream(string.Format(outputFile, counter++), FileMode.Create),
+ options
+ );
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-otg-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-otg-to-pdf/_index.md
new file mode 100644
index 0000000..8212b41
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-otg-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert OTG to PDF
+linktitle: Convert OTG to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 13
+url: /net/pdf-conversion/convert-otg-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert OTG file into PDF format.
+ /// For more details about OpenDocument Graphic Template (.otg) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-otg-to-pdf
+ ///
+ internal static class ConvertOtgToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "otg-converted-to.pdf");
+
+ // Load the source OTG file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_OTG))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-otp-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-otp-to-pdf/_index.md
new file mode 100644
index 0000000..19ef22a
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-otp-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert OTP to PDF
+linktitle: Convert OTP to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 14
+url: /net/pdf-conversion/convert-otp-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert OTP file into PDF format.
+ /// For more details about Origin Graph Template (.otp) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-otp-to-pdf
+ ///
+ internal static class ConvertOtpToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "otp-converted-to.pdf");
+
+ // Load the source OTP file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_OTP))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-ots-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-ots-to-pdf/_index.md
new file mode 100644
index 0000000..470ec24
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-ots-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert OTS to PDF
+linktitle: Convert OTS to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 15
+url: /net/pdf-conversion/convert-ots-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert OTS file into PDF format.
+ /// For more details about OpenDocument Spreadsheet Template (.ots) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-ots-to-pdf
+ ///
+ internal static class ConvertOtsToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "ots-converted-to.pdf");
+
+ // Load the source OTS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_OTS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-ott-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-ott-to-pdf/_index.md
new file mode 100644
index 0000000..23c6972
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-ott-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert OTT to PDF
+linktitle: Convert OTT to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 16
+url: /net/pdf-conversion/convert-ott-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert OTT file into PDF format.
+ /// For more details about Open Document Template (.ott) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-ott-to-pdf
+ ///
+ internal static class ConvertOttToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "ott-converted-to.pdf");
+
+ // Load the source OTT file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_OTT))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-oxps-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-oxps-to-pdf/_index.md
new file mode 100644
index 0000000..2577af4
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-oxps-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert OXPS to PDF
+linktitle: Convert OXPS to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 17
+url: /net/pdf-conversion/convert-oxps-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert OXPS file into PDF format.
+ /// For more details about XML Paper Specification File (.oxps) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-oxps-to-pdf
+ ///
+ internal static class ConvertOxpsToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "oxps-converted-to.pdf");
+
+ // Load the source OXPS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_OXPS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-pcl-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-pcl-to-pdf/_index.md
new file mode 100644
index 0000000..82b9c4a
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-pcl-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert PCL to PDF
+linktitle: Convert PCL to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 18
+url: /net/pdf-conversion/convert-pcl-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PCL file into PDF format.
+ /// For more details about Printer Command Language Document (.pcl) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-pcl-to-pdf
+ ///
+ internal static class ConvertPclToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "pcl-converted-to.pdf");
+
+ // Load the source PCL file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PCL))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-plt-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-plt-to-pdf/_index.md
new file mode 100644
index 0000000..be81fcb
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-plt-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert PLT to PDF
+linktitle: Convert PLT to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 19
+url: /net/pdf-conversion/convert-plt-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PLT file into PDF format.
+ /// For more details about PLT (HPGL) (.plt) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-plt-to-pdf
+ ///
+ internal static class ConvertPltToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "plt-converted-to.pdf");
+
+ // Load the source PLT file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PLT))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-png-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-png-to-pdf/_index.md
new file mode 100644
index 0000000..4e75a99
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-png-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert PNG to PDF
+linktitle: Convert PNG to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 20
+url: /net/pdf-conversion/convert-png-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PNG file into PDF format.
+ /// For more details about Portable Network Graphic (.png) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-png-to-pdf
+ ///
+ internal static class ConvertPngToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "png-converted-to.pdf");
+
+ // Load the source PNG file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PNG))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-pot-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-pot-to-pdf/_index.md
new file mode 100644
index 0000000..b219c2d
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-pot-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert POT to PDF
+linktitle: Convert POT to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 22
+url: /net/pdf-conversion/convert-pot-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert POT file into PDF format.
+ /// For more details about PowerPoint Template (.pot) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-pot-to-pdf
+ ///
+ internal static class ConvertPotToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "pot-converted-to.pdf");
+
+ // Load the source POT file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_POT))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-potm-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-potm-to-pdf/_index.md
new file mode 100644
index 0000000..59281d4
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-potm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert POTM to PDF
+linktitle: Convert POTM to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 21
+url: /net/pdf-conversion/convert-potm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert POTM file into PDF format.
+ /// For more details about Microsoft PowerPoint Template (.potm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-potm-to-pdf
+ ///
+ internal static class ConvertPotmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "potm-converted-to.pdf");
+
+ // Load the source POTM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_POTM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-potx-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-potx-to-pdf/_index.md
new file mode 100644
index 0000000..88afff0
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-potx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert POTX to PDF
+linktitle: Convert POTX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 23
+url: /net/pdf-conversion/convert-potx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert POTX file into PDF format.
+ /// For more details about Microsoft PowerPoint Open XML Template (.potx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-potx-to-pdf
+ ///
+ internal static class ConvertPotxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "potx-converted-to.pdf");
+
+ // Load the source POTX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_POTX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-pps-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-pps-to-pdf/_index.md
new file mode 100644
index 0000000..9d3fc44
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-pps-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert PPS to PDF
+linktitle: Convert PPS to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 25
+url: /net/pdf-conversion/convert-pps-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PPS file into PDF format.
+ /// For more details about Microsoft PowerPoint Slide Show (.pps) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-pps-to-pdf
+ ///
+ internal static class ConvertPpsToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "pps-converted-to.pdf");
+
+ // Load the source PPS file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PPS))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-ppsm-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-ppsm-to-pdf/_index.md
new file mode 100644
index 0000000..34a1deb
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-ppsm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert PPSM to PDF
+linktitle: Convert PPSM to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 24
+url: /net/pdf-conversion/convert-ppsm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PPSM file into PDF format.
+ /// For more details about Microsoft PowerPoint Slide Show (.ppsm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-ppsm-to-pdf
+ ///
+ internal static class ConvertPpsmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "ppsm-converted-to.pdf");
+
+ // Load the source PPSM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PPSM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-ppsx-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-ppsx-to-pdf/_index.md
new file mode 100644
index 0000000..c1ca262
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-ppsx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert PPSX to PDF
+linktitle: Convert PPSX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 26
+url: /net/pdf-conversion/convert-ppsx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PPSX file into PDF format.
+ /// For more details about PowerPoint Open XML Slide Show (.ppsx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-ppsx-to-pdf
+ ///
+ internal static class ConvertPpsxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "ppsx-converted-to.pdf");
+
+ // Load the source PPSX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PPSX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-ppt-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-ppt-to-pdf/_index.md
new file mode 100644
index 0000000..b33c0e8
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-ppt-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert PPT to PDF
+linktitle: Convert PPT to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 28
+url: /net/pdf-conversion/convert-ppt-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PPT file into PDF format.
+ /// For more details about PowerPoint Presentation (.ppt) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-ppt-to-pdf
+ ///
+ internal static class ConvertPptToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "ppt-converted-to.pdf");
+
+ // Load the source PPT file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PPT))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-pptm-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-pptm-to-pdf/_index.md
new file mode 100644
index 0000000..ee8f04f
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-pptm-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert PPTM to PDF
+linktitle: Convert PPTM to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 27
+url: /net/pdf-conversion/convert-pptm-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PPTM file into PDF format.
+ /// For more details about Microsoft PowerPoint Presentation (.pptm) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-pptm-to-pdf
+ ///
+ internal static class ConvertPptmToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "pptm-converted-to.pdf");
+
+ // Load the source PPTM file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PPTM))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```
diff --git a/content/english/net/pdf-conversion/convert-pptx-to-pdf/_index.md b/content/english/net/pdf-conversion/convert-pptx-to-pdf/_index.md
new file mode 100644
index 0000000..d072ae5
--- /dev/null
+++ b/content/english/net/pdf-conversion/convert-pptx-to-pdf/_index.md
@@ -0,0 +1,44 @@
+---
+title: Convert PPTX to PDF
+linktitle: Convert PPTX to PDF
+second_title: GroupDocs.Conversion .NET API
+description:
+type: docs
+weight: 29
+url: /net/pdf-conversion/convert-pptx-to-pdf/
+---
+
+## Complete Source Code
+```csharp
+using System;
+using System.IO;
+using GroupDocs.Conversion.Options.Convert;
+
+namespace GroupDocs.Conversion.Examples.CSharp.BasicUsage
+{
+ ///
+ /// This example demonstrates how to convert PPTX file into PDF format.
+ /// For more details about PowerPoint Open XML Presentation (.pptx) to Portable Document (.pdf) conversion please check this documentation article
+ /// https://docs.groupdocs.com/conversion/net/convert-pptx-to-pdf
+ ///
+ internal static class ConvertPptxToPdf
+ {
+ public static void Run()
+ {
+ string outputFolder = "Your Document Directory";
+ string outputFile = Path.Combine(outputFolder, "pptx-converted-to.pdf");
+
+ // Load the source PPTX file
+ using (var converter = new GroupDocs.Conversion.Converter(Constants.SAMPLE_PPTX))
+ {
+ var options = new PdfConvertOptions();
+ // Save converted PDF file
+ converter.Convert(outputFile, options);
+ }
+
+ Console.WriteLine("\nConversion to pdf completed successfully. \nCheck output in {0}", outputFolder);
+ }
+ }
+}
+
+```