We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

Overview

Syncfusion’s .NET MAUI PowerPoint framework allows you to create, read, and edit PowerPoint files in any .NET MAUI application without Microsoft Office or interop dependency. Overview diagram of .NET MAUI PowerPoint framework.


Why Syncfusion?

Powerful and Comprehensive API

All the elements in a typical PowerPoint slide, like text, formatting, images, shapes, and tables, are accessible through a comprehensive set of APIs.

Fully Documented

Syncfusion Essential PowerPoint comes with extensive documentation, knowledge base, and samples.

Stand-Alone Library

Essential PowerPoint is a non-UI component that provides a full-fledged PowerPoint presentation instance that allows creating and editing the PowerPoint files without any dependency on Microsoft Office COM libraries and or Microsoft Office.

Cross Platforms

Single API across all the platforms.


Creation and Editing APIs

Create PowerPoint presentations from scratch with text, charts, tables, images, SmartArt diagrams, animation, transitions, and more. Manipulate or edit existing PowerPoint files with just a few lines of code.

PowerPoint shapes in .NET MAUI

Shapes

Add, rearrange, duplicate, format, and delete shapes in a PowerPoint slide.

.NET MAUI PowerPoint charts.

Charts

Create and edit more than 80 chart types with elements like chart titles, legends, axis titles, data labels, and line styles.

PowerPoint SmartArt in .NET MAUI

SmartArt

Create, modify, and format 134 SmartArt diagrams to quickly make a visual representation of data.

.NET MAUI PowerPoint rich text and formatting.

Rich Text and Formatting

Add, format, and delete text. Use all formatting options supported by Microsoft PowerPoint: bold, italic, subscript, superscript, text color, font, paragraph, alignment, indentation, and more.

PowerPoint tables in .NET MAUI

Tables

Create, modify, and format tables to keep data organized. Cell-level and row-level operations like adding, inserting, and deleting rows or columns are also supported. Built-in table styles are available that are equivalent to Microsoft PowerPoint table styles.

PowerPoint copy and paste in .NET MAUI

Copy and Combine PowerPoints

A slide can be copied and pasted to the same or a different PowerPoint presentation. Copied slides can be merged with source and destination formatting.

.NET MAUI PowerPoint images.

Images

Insert, delete, replace, and format pictures in a PowerPoint slide.

.NET MAUI PowerPoint bullet and numbering.

Bullets and Numbering

Add and manipulate single-level and multilevel lists like in Microsoft PowerPoint.

PowerPoint security in .NET MAUI

Security

Read and write encrypted PowerPoint presentations. The library allows marking a PowerPoint file as final to prevent editing.


For more information, check out our .NET MAUI PowerPoint Library features.


PowerPoint Converters

PowerPoint to PDF conversion in .NET MAUI

PowerPoint to PDF

Convert a PowerPoint presentation to PDF. The conversion can be customized with handouts, notes pages, and font substitution. The size of the converted PDF document can also be optimized.

PowerPoint to image conversion

PowerPoint to Image

An entire PowerPoint presentation or a specific slide can be converted to an image. JPEG, PNG, BMP, TIFF, EMF, and GIF formats are supported. When converting a PowerPoint slide to image format, the PowerPoint framework provides support to use any fallback fonts for the missing fonts.


.NET MAUI PowerPoint Code Example

Easily get started with the .NET MAUI PowerPoint library using a few simple lines of XAML and C# code example as demonstrated below. Also explore our .NET MAUI PowerPoint Library Example that shows you how to render and configure the .NET MAUI PowerPoint.

<ContentPage xmlns=http://schemas.microsoft.com/dotnet/2021/maui
    xmlns:x=http://schemas.microsoft.com/winfx/2009/xaml
    x:Class="CreatePowerPoint.MainPage"
    BackgroundColor="{DynamicResource SecondaryColor}">
    <ScrollView>
        <Grid RowSpacing="25" RowDefinitions="Auto,Auto,Auto,Auto,*"
            Padding="{OnPlatform iOS='30,60,30,30', Default='30'}">
            <Button 
                Text="Create Presentation"
                FontAttributes="Bold"
                Grid.Row="0"
                SemanticProperties.Hint="Creates Presentation you click"
                Clicked="CreatePresentation"
                HorizontalOptions="Center" />
        </Grid>
    </ScrollView>
</ContentPage>
//Creates a new instance of the PowerPoint Presentation file.
using IPresentation pptxDoc = Presentation.Create();
//Adds a new slide to the file and apply background color.
ISlide slide = pptxDoc.Slides.Add(SlideLayoutType.TitleOnly);

//Adds title content to the slide by accessing the title placeholder of the TitleOnly layout-slide.
IShape titleShape = slide.Shapes[0] as IShape;
titleShape.TextBody.AddParagraph("Company History").HorizontalAlignment = HorizontalAlignmentType.Center;

//Adds description content to the slide by adding a new TextBox.
IShape descriptionShape = slide.AddTextBox(53.22, 141.73, 874.19, 77.70);
descriptionShape.TextBody.Text = "IMN Solutions PVT LTD is the software company, established in 1987, by George Milton. The company has been listed as the trusted partner for many high-profile organizations since 1988 and got awards for quality products from reputed organizations.";

//Saves the presentation to the memory stream.
using MemoryStream stream = new();
pptxDoc.Save(stream);
stream.Position = 0;
//Saves the memory stream as file.
SaveService saveService = new();
saveService.SaveAndView("Sample.pptx", "application/vnd.openxmlformats-officedocument.presentationml.presentation", stream);




Frequently Asked Questions

The Syncfusion .NET MAUI PowerPoint Framework supports the following:

  • Create and edit PowerPoint files in just a few lines of code.
  • Top features: SmartArt, charts, tables, and animations.
  • Combine PowerPoint files or individual slides.
  • Create PowerPoint presentations from scratch.
  • One of the best MAUI PowerPoint libraries on the market, offering a rich set of APIs without Office or interop dependencies.
  • Extensive demo and documentation to learn quickly and get started with MAUI PowerPoint framework.

No, this is a commercial product and requires a paid license. However, a free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.

A good place to start would be our comprehensive getting started documentation.

Apart from .NET MAUI, the Syncfusion PowerPoint Framework supports platforms for web (Blazor, ASP.NET Core, ASP.NET MVC, and ASP.NET Web Forms), mobile (Xamarin, and UWP), and desktop (Windows Forms, WPF,WinUI, Xamarin, and UWP).

You can find our .NET MAUI PowerPoint Frameworks demo here.

Awards

Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion is proud to hold the following industry awards.

Scroll up icon
Live Chat Icon For mobile