How to C#: Quick to Start Using XDoc.PowerPoint
To Have a Quick Evaluation of XDoc.PowerPoint in Visual C# Console Application
As a leading professional third-party SDK supplier in the field of image and document management, RasterEdge has always been devoted to providing various effective and fully-functional imaging solutions for developers who are working on different .NET developing applications.
pdf compression library c#,
barcode generator code in c#.net,
c# get tiff compression,
itext add text to existing pdf c#,
pdf to thumbnail converter c#,
c# data matrix reader.
Related .net document control helps:
asp.net excel view: ASP.NET Excel Viewer in C# Control (MVC & WebForms): view Office Excel document in web browser.
powerpoint viewer asp.net mvc: ASP.NET PowerPoint Document Viewer Control (MVC & WebForms): view ppt, pptx files online in C# using ASP.NET
asp.net pdf editor control: EdgePDF: ASP.NET PDF Editor Web Control: Online view, annotate, redact, edit, process, convert PDF documents
asp.net edit pdf text color:
ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
mvc pdf editor: ASP.NET MVC PDF Viewer & Editor: view, annotate, redact, edit PDF document in C# ASP.NET MVC
document viewer asp.net c#: ASP.NET Document Viewer using C#: Open, View, Annotate, Redact, Convert document files in ASP.NET using C#, HTML5, JQuer...
asp.net edit pdf page:
ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
This C#.NET PowerPoint document processing toolkit, RasterEdge XDoc.PowerPoint SDK for .NET is one of the most strongly-featured and mature document imaging library toolkits on the market, which is designed to help developers implement PowerPoint-related tasks in their C#.NET applications.
convert image to pdf using pdfsharp c#,
convert pdf to text using itextsharp in vb.net,
c# convert text to pdf,
vb.net pdf text extract,
vb.net convert pdf to word,
convert pdf to svg c#,
vb.net rotate pdf.
Using this C#.NET PowerPoint document processor control, you can easily and quickly complete PowerPoint document creating and loading, PowerPoint document conversion, PowerPoint document annotation and more in any type of a 32-bit or 64-bit .NET application, including ASP.NET web service and Windows Forms for any .NET Framework version from 2.0 to 4.5.
open word document file in browser in asp.net,
free asp.net tiff viewer,
asp.net core pdf editor,
asp net mvc generate pdf from view itextsharp,
pdf preview in asp net c# example,
asp net replace text from pdf javascript,
asp.net pdf viewer free.
As you know, there're various reliable PowerPoint document processing features that can be implemented in C#.NET programming. And you may want to have a quick testing on RasterEdge XDoc.PowerPoint after downloading its free trial package online. To meet your requirement, on this quick to start page, we will tell how to create a C# console application, merge two PowerPoint files, and save into a new PowerPoint file.
Create a C# Console Application
Open Visual Studio and click "New" from toolbar. Note, Visual Studio 2005 and above versions are available;
Choose "C# Language" and "Console Application" respectively to create a project.
Sample C# Code for Merging Two PowerPoint Files and Save
By following steps below, your C# project will merge the two input PowerPoint files according to priority, and then create a new PowerPoint file to a defined output path.
Add necessary XDoc.PowerPoint DLL libraries into your created C# application as references.
RasterEdge.Imaging.Basic.dll
RasterEdge.XDoc.Office.Inner.Common.dll
RasterEdge.Imaging.Drawing.dll
RasterEdge.Imaging.Processing.dll
RasterEdge.XDoc.Office.Inner.Office03.dll
RasterEdge.Imaging.Font.dll
RasterEdge.XDoc.PowerPoint.dll
RasterEdge.XImage.Raster.Core.dll
RasterEdge.XImage.Raster.dll
Use corresponding namespaces;
using RasterEdge.Imaging.Basic;
using RasterEdge.XDoc.PowerPoint;
Copy of the following C# sample code to your application.
String inputFilePath1 = Program.RootPath + "\\" + "1.pptx";
String inputFilePath2 = Program.RootPath + "\\" + "2.pptx";
String outputFilePath = Program.RootPath + "\\" + "Output.pptx";
String[] inputFilePaths = new String[2] { inputFilePath1, inputFilePath2 };
// Combine two PowerPoint files.
PPTXDocument.CombineDocument(inputFilePaths, outputFilePath);
|