XDoc.PowerPoint
Features
Tech Specs
How-to C#
Pricing

C# PowerPoint Library
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.

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.


How to read, process, convert, save Microsoft Office PowerPoint document using C#?

  1. Download XDoc.PowerPoint C# PPTX document library
  2. Install C# PPTX library to process Microsoft PowerPoint file in .NET applications
  3. Step by Step Tutorial










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.

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.

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);