Skip to content

Commit 466b71a

Browse files
Added README files for Presentation interactive sample browser
1 parent 1ade30f commit 466b71a

File tree

13 files changed

+546
-0
lines changed
  • Animations/Add-animation-effect-to-PowerPoint-shapes/.NET/Add-animation-effect-to-PowerPoint-shapes
  • Charts/Create-PowerPoint-chart/.NET/Create-PowerPoint-chart
  • Find-and-Replace/Find-and-Replace-in-PowerPoint/.NET/Find-and-Replace-in-PowerPoint
  • PPTX-to-Image-conversion/Convert-PowerPoint-slide-to-Image/.NET/Convert-PowerPoint-slide-to-Image
  • PPTX-to-PDF-conversion
    • Convert-PowerPoint-into-accessible-PDF/.NET/Convert-PowerPoint-into-accessible-PDF
    • Convert-PowerPoint-presentation-to-PDF/.NET/Convert-PowerPoint-presentation-to-PDF
    • Set-PDF-conformance-level/.NET/Set-PDF-conformance-level
  • Security/Encrypt-PowerPoint-with-password/.NET/Encrypt-PowerPoint-with-password
  • Shapes/Add-PowerPoint-shape/.NET/Add-PowerPoint-shape
  • Slide-transitions/Apply-PowerPoint-slide-transition/.NET/Apply-PowerPoint-slide-transition
  • Slides
    • Add-PowerPoint-slide/.NET/Add-PowerPoint-slide
    • Merge-PowerPoint-slide/.NET/Merge-PowerPoint-slide
  • Tables/Apply-table-formatting/.NET/Apply-table-formatting

13 files changed

+546
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Add animation to a PowerPoint Presentation using C#
2+
3+
The Syncfusion [.NET PowerPoint Library](https://www.syncfusion.com/document-processing/powerpoint-framework/net/powerpoint-library) (Presentation) enables you to create, read, and edit PowerPoint files programmatically without Microsoft office or interop dependencies. Using this library, you can **add animation to a PowerPoint Presentation** using C#.
4+
5+
## Steps to add animation programmatically
6+
7+
Step 1: Create a new .NET Core console application project.
8+
9+
Step 2: Install the [Syncfusion.Presentation.Net.Core](https://www.nuget.org/packages/Syncfusion.Presentation.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
10+
11+
Step 3: Include the following namespaces in the Program.cs file.
12+
13+
```csharp
14+
using Syncfusion.Presentation;
15+
using System.IO;
16+
```
17+
18+
Step 4: Add the following code snippet in Program.cs file to add animations to the PowerPoint Presentation.
19+
20+
```csharp
21+
//Load or open an PowerPoint Presentation.
22+
using IPresentation pptxDoc = Presentation.Create();
23+
//Add a blank slide to Presentation.
24+
ISlide slide = pptxDoc.Slides.Add(SlideLayoutType.Blank);
25+
//Add normal shape to slide.
26+
IShape cubeShape = slide.Shapes.AddShape(AutoShapeType.Cube, 100, 100, 300, 300);
27+
//Access the animation sequence to create effects.
28+
ISequence sequence = slide.Timeline.MainSequence;
29+
//Add bounce effect to the shape.
30+
IEffect bounceEffect = sequence.AddEffect(cubeShape, EffectType.Bounce, EffectSubtype.None, EffectTriggerType.OnClick);
31+
using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite);
32+
pptxDoc.Save(outputStream);
33+
```
34+
35+
More information about adding animations can be found in this [documentation](https://help.syncfusion.com/document-processing/powerpoint/powerpoint-library/net/working-with-animation) section.
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Add a chart to a PowerPoint Presentation using C#
2+
3+
The Syncfusion [.NET PowerPoint Library](https://www.syncfusion.com/document-processing/powerpoint-framework/net/powerpoint-library) (Presentation) enables you to create, read, and edit PowerPoint files programmatically without Microsoft Office or interop dependencies. Using this library, you can **add a chart to a PowerPoint Presentation** using C#.
4+
5+
## Steps to add a chart programmatically
6+
7+
Step 1: Create a new .NET Core console application project.
8+
9+
Step 2: Install the [Syncfusion.Presentation.Net.Core](https://www.nuget.org/packages/Syncfusion.Presentation.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
10+
11+
Step 3: Include the following namespaces in the Program.cs file.
12+
13+
```csharp
14+
using Syncfusion.Presentation;
15+
using Syncfusion.OfficeChart;
16+
using System.IO;
17+
```
18+
19+
Step 4: Add the following code snippet in Program.cs file to add a chart to the PowerPoint Presentation.
20+
21+
```csharp
22+
//Load or open an PowerPoint Presentation.
23+
using IPresentation pptxDoc = Presentation.Create();
24+
//Adds a blank slide to the Presentation.
25+
ISlide slide = pptxDoc.Slides.Add(SlideLayoutType.Blank);
26+
//Add chart to the slide with position and size.
27+
28+
IPresentationChart chart = slide.Charts.AddChart(100, 10, 700, 500);
29+
//Specify the chart title.
30+
chart.ChartTitle = "Sales Analysis";
31+
//Set chart data - Row1.
32+
chart.ChartData.SetValue(1, 2, "Jan");
33+
chart.ChartData.SetValue(1, 3, "Feb");
34+
chart.ChartData.SetValue(1, 4, "March");
35+
36+
//Set chart data - Row2.
37+
chart.ChartData.SetValue(2, 1, 2010);
38+
chart.ChartData.SetValue(2, 2, 60);
39+
chart.ChartData.SetValue(2, 3, 70);
40+
chart.ChartData.SetValue(2, 4, 80);
41+
42+
//Set chart data - Row3.
43+
chart.ChartData.SetValue(3, 1, 2011);
44+
chart.ChartData.SetValue(3, 2, 80);
45+
chart.ChartData.SetValue(3, 3, 70);
46+
chart.ChartData.SetValue(3, 4, 60);
47+
48+
//Set chart data - Row4.
49+
chart.ChartData.SetValue(4, 1, 2012);
50+
chart.ChartData.SetValue(4, 2, 60);
51+
chart.ChartData.SetValue(4, 3, 70);
52+
chart.ChartData.SetValue(4, 4, 80);
53+
54+
//Create a new chart series with the name.
55+
IOfficeChartSerie seriesJan = chart.Series.Add("Jan");
56+
//Set the data range of chart series – start row, start column, end row, end column.
57+
seriesJan.Values = chart.ChartData[2, 2, 4, 2];
58+
//Create a new chart series with the name.
59+
IOfficeChartSerie seriesFeb = chart.Series.Add("Feb");
60+
//Set the data range of chart series – start row, start column, end row, end column.
61+
seriesFeb.Values = chart.ChartData[2, 3, 4, 3];
62+
//Create a new chart series with the name.
63+
IOfficeChartSerie seriesMarch = chart.Series.Add("March");
64+
//Set the data range of chart series – start row, start column, end row, end column.
65+
seriesMarch.Values = chart.ChartData[2, 4, 4, 4];
66+
//Set the data range of the category axis.
67+
chart.PrimaryCategoryAxis.CategoryLabels = chart.ChartData[2, 1, 4, 1];
68+
//Specify the chart type.
69+
chart.ChartType = OfficeChartType.Column_Clustered;
70+
using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite);
71+
pptxDoc.Save(outputStream);
72+
```
73+
74+
More information about adding charts can be found in this [documentation](https://help.syncfusion.com/document-processing/powerpoint/powerpoint-library/net/working-with-charts) section.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Find and replace text in a PowerPoint Presentation using C#
2+
3+
The Syncfusion [.NET PowerPoint Library](https://www.syncfusion.com/document-processing/powerpoint-framework/net/powerpoint-library) (Presentation) enables you to create, read, and edit PowerPoint files programmatically without Microsoft Office or interop dependencies. Using this library, you can **find and replace text in a PowerPoint Presentation** using C#.
4+
5+
## Steps to find and replace text programmatically
6+
7+
Step 1: Create a new .NET Core console application project.
8+
9+
Step 2: Install the [Syncfusion.Presentation.Net.Core](https://www.nuget.org/packages/Syncfusion.Presentation.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
10+
11+
Step 3: Include the following namespaces in the Program.cs file.
12+
13+
```csharp
14+
using Syncfusion.Presentation;
15+
using System.IO;
16+
```
17+
18+
Step 4: Add the following code snippet in Program.cs file to find and replace text in the PowerPoint Presentation.
19+
20+
```csharp
21+
//Load or open an PowerPoint Presentation.
22+
using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
23+
//Open an existing PowerPoint presentation.
24+
using IPresentation pptxDoc = Presentation.Open(inputStream);
25+
//Find all the occurrences of a particular text in the PowerPoint presentation.
26+
ITextSelection[] textSelections = pptxDoc.FindAll("product", false, false);
27+
foreach (ITextSelection textSelection in textSelections)
28+
{
29+
//Get the found text as a single text part.
30+
ITextPart textPart = textSelection.GetAsOneTextPart();
31+
//Replace the text.
32+
textPart.Text = "Service";
33+
}
34+
using FileStream outputStream = new(Path.GetFullPath(@"Output/Output.pptx"), FileMode.Create, FileAccess.ReadWrite);
35+
pptxDoc.Save(outputStream);
36+
```
37+
38+
More information about find and replace can be found in this [documentation](https://help.syncfusion.com/document-processing/powerpoint/powerpoint-library/net/working-with-find-and-replace) section.
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Convert PowerPoint Presentation to Image using C#
2+
3+
The Syncfusion [.NET PowerPoint Library](https://www.syncfusion.com/document-processing/powerpoint-framework/net/powerpoint-library) (Presentation) enables you to create, read, edit, and convert PowerPoint files programmatically without Microsoft office or interop dependencies. Using this library, you can **convert a PowerPoint Presentation to Image** using C#.
4+
5+
## Steps to convert PPTX to Image programmatically
6+
7+
Step 1: Create a new .NET Core console application project.
8+
9+
Step 2: Install the [Syncfusion.PresentationRenderer.Net.Core](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
10+
11+
Step 3: Include the following namespaces in the Program.cs file.
12+
13+
```csharp
14+
using Syncfusion.Presentation;
15+
using Syncfusion.PresentationRenderer;
16+
using System.IO;
17+
```
18+
19+
Step 4: Add the following code snippet in Program.cs file to convert a PowerPoint Presentation to image.
20+
21+
```csharp
22+
//Load or open an PowerPoint Presentation.
23+
using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
24+
//Open an existing PowerPoint presentation.
25+
using IPresentation pptxDoc = Presentation.Open(inputStream);
26+
//Initialize the PresentationRenderer to perform image conversion.
27+
pptxDoc.PresentationRenderer = new PresentationRenderer();
28+
//Convert PowerPoint slide to image as stream.
29+
using Stream stream = pptxDoc.Slides[0].ConvertToImage(ExportImageFormat.Jpeg);
30+
//Reset the stream position.
31+
stream.Position = 0;
32+
//Create the output image file stream.
33+
using FileStream fileStreamOutput = File.Create(Path.GetFullPath(@"Output/Output.jpg"));
34+
//Copy the converted image stream into created output stream.
35+
stream.CopyTo(fileStreamOutput);
36+
```
37+
38+
More information about PPTX to Image conversion can be found in this [documentation](https://help.syncfusion.com/document-processing/powerpoint/conversions/powerpoint-to-image/net/presentation-to-image) section.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Convert PowerPoint Presentation to PDF/UA using C#
2+
3+
The Syncfusion [.NET PowerPoint Library](https://www.syncfusion.com/document-processing/powerpoint-framework/net/powerpoint-library) (Presentation) enables you to create, read, edit, and convert PowerPoint files programmatically without Microsoft office or interop dependencies. Using this library, you can **convert a PowerPoint Presentation to PDF/UA** using C#.
4+
5+
## Steps to convert PPTX to PDF/UA programmatically
6+
7+
Step 1: Create a new .NET Core console application project.
8+
9+
Step 2: Install the [Syncfusion.PresentationRenderer.Net.Core](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
10+
11+
Step 3: Include the following namespaces in the Program.cs file.
12+
13+
```csharp
14+
using Syncfusion.Presentation;
15+
using Syncfusion.PresentationRenderer;
16+
using Syncfusion.Pdf;
17+
using System.IO;
18+
```
19+
20+
Step 4: Add the following code snippet in Program.cs file to convert a PowerPoint Presentation to PDF/UA.
21+
22+
```csharp
23+
//Load the PowerPoint presentation into a stream.
24+
using FileStream fileStreamInput = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
25+
//Open the existing PowerPoint presentation with the loaded stream.
26+
using IPresentation pptxDoc = Presentation.Open(fileStreamInput) ;
27+
//Instantiation of the PresentationToPdfConverterSettings.
28+
PresentationToPdfConverterSettings pdfConverterSettings = new PresentationToPdfConverterSettings();
29+
//Enable a flag to preserve structured document tags in the converted PDF document.
30+
pdfConverterSettings.AutoTag = true;
31+
//Convert the PowerPoint document to a PDF document.
32+
using PdfDocument pdfDocument = PresentationToPdfConverter.Convert(pptxDoc, pdfConverterSettings);
33+
//Save the converted PDF document to the fileStream.
34+
using FileStream fileStreamOutput = File.Create(Path.GetFullPath("Output/PPTXToPDF.pdf"));
35+
pdfDocument.Save(fileStreamOutput);
36+
fileStreamOutput.Position = 0;
37+
```
38+
39+
More information about PPTX to PDF/UA conversion can be found in this [documentation](https://help.syncfusion.com/document-processing/powerpoint/conversions/powerpoint-to-pdf/net/presentation-to-pdf#accessible-pdf-document) section.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Convert PowerPoint Presentation to PDF using C#
2+
3+
The Syncfusion [.NET PowerPoint Library](https://www.syncfusion.com/document-processing/powerpoint-framework/net/powerpoint-library) (Presentation) enables you to create, read, edit, and convert PowerPoint files programmatically without Microsoft office or interop dependencies. Using this library, you can **convert a PowerPoint Presentation to PDF** using C#.
4+
5+
## Steps to convert PPTX to PDF programmatically
6+
7+
Step 1: Create a new .NET Core console application project.
8+
9+
Step 2: Install the [Syncfusion.PresentationRenderer.Net.Core](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
10+
11+
Step 3: Include the following namespaces in the Program.cs file.
12+
13+
```csharp
14+
using Syncfusion.Presentation;
15+
using Syncfusion.PresentationRenderer;
16+
using Syncfusion.Pdf;
17+
using System.IO;
18+
```
19+
20+
Step 4: Add the following code snippet in Program.cs file to convert a PowerPoint Presentation to PDF.
21+
22+
```csharp
23+
//Load or open an PowerPoint Presentation.
24+
using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
25+
//Open an existing PowerPoint presentation.
26+
using IPresentation pptxDoc = Presentation.Open(inputStream);
27+
//Create the MemoryStream to save the converted PDF.
28+
using MemoryStream pdfStream = new();
29+
//Convert the PowerPoint document to PDF document.
30+
using PdfDocument pdfDocument = PresentationToPdfConverter.Convert(pptxDoc);
31+
//Save the converted PDF document to MemoryStream.
32+
pdfDocument.Save(pdfStream);
33+
pdfStream.Position = 0;
34+
//Create the output PDF file stream.
35+
using FileStream fileStreamOutput = File.Create(Path.GetFullPath(@"Output/PPTXToPDF.pdf"));
36+
//Copy the converted PDF stream into created output PDF stream.
37+
pdfStream.CopyTo(fileStreamOutput);
38+
```
39+
40+
More information about PPTX to PDF conversion can be found in this [documentation](https://help.syncfusion.com/document-processing/powerpoint/conversions/powerpoint-to-pdf/net/presentation-to-pdf) section.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Convert PowerPoint Presentation to PDF/A using C#
2+
3+
The Syncfusion [.NET PowerPoint Library](https://www.syncfusion.com/document-processing/powerpoint-framework/net/powerpoint-library) (Presentation) enables you to create, read, edit, and convert PowerPoint files programmatically without Microsoft office or interop dependencies. Using this library, you can **convert a PowerPoint Presentation to PDF/A** using C#.
4+
5+
## Steps to convert PPTX to PDF/A programmatically
6+
7+
Step 1: Create a new .NET Core console application project.
8+
9+
Step 2: Install the [Syncfusion.PresentationRenderer.Net.Core](https://www.nuget.org/packages/Syncfusion.PresentationRenderer.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
10+
11+
Step 3: Include the following namespaces in the Program.cs file.
12+
13+
```csharp
14+
using Syncfusion.Presentation;
15+
using Syncfusion.PresentationRenderer;
16+
using Syncfusion.Pdf;
17+
using System.IO;
18+
```
19+
20+
Step 4: Add the following code snippet in Program.cs file to convert a PowerPoint Presentation to PDF/A.
21+
22+
```csharp
23+
//Create a file stream to read the PowerPoint presentation file.
24+
using FileStream inputStream = new(Path.GetFullPath(@"Data/Template.pptx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
25+
//Open an existing PowerPoint presentation.
26+
using IPresentation pptxDoc = Presentation.Open(inputStream);
27+
//Initialize the conversion settings.
28+
PresentationToPdfConverterSettings pdfConverterSettings = new PresentationToPdfConverterSettings();
29+
//Set the Pdf conformance level to A1B
30+
pdfConverterSettings.PdfConformanceLevel = PdfConformanceLevel.Pdf_A1B;
31+
//Convert the PowerPoint presentation to PDF file.
32+
using PdfDocument pdfDocument = PresentationToPdfConverter.Convert(pptxDoc, pdfConverterSettings);
33+
//Create new instance of file stream.
34+
using FileStream pdfStream = new(Path.GetFullPath(@"Output/PPTXToPDF.pdf"), FileMode.Create);
35+
//Save the generated PDF to file stream.
36+
pdfDocument.Save(pdfStream);
37+
```
38+
39+
More information about converting PPTX to PDF with conformance can be found in this [documentation](https://help.syncfusion.com/document-processing/powerpoint/conversions/powerpoint-to-pdf/net/presentation-to-pdf#pdf-conformance) section.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Encrypt PowerPoint Presentation using C#
2+
3+
The Syncfusion [.NET PowerPoint Library](https://www.syncfusion.com/document-processing/powerpoint-framework/net/powerpoint-library) (Presentation) enables you to create, read, and edit PowerPoint files programmatically without Microsoft office or interop dependencies. Using this library, you can **encrypt a PowerPoint Presentation** using C#.
4+
5+
## Steps to encrypt a PowerPoint Presentation programmatically
6+
7+
Step 1: Create a new .NET Core console application project.
8+
9+
Step 2: Install the [Syncfusion.Presentation.Net.Core](https://www.nuget.org/packages/Syncfusion.Presentation.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
10+
11+
Step 3: Include the following namespaces in the Program.cs file.
12+
13+
```csharp
14+
using Syncfusion.Presentation;
15+
using System.IO;
16+
```
17+
18+
Step 4: Add the following code snippet in Program.cs file to encrypt the PowerPoint Presentation.
19+
20+
```csharp
21+
//Load or open an PowerPoint Presentation.
22+
using IPresentation presentation = Presentation.Create();
23+
//Add slide to Presentation.
24+
ISlide slide = presentation.Slides.Add(SlideLayoutType.Blank);
25+
//Add textbox to slide.
26+
IShape shape = slide.Shapes.AddTextBox(100, 30, 200, 300);
27+
//Add a paragraph with text content.
28+
IParagraph paragraph = shape.TextBody.AddParagraph("Password Protected.");
29+
//Protects the file with password.
30+
presentation.Encrypt("PASSWORD!@1#$");
31+
using FileStream outputStream = new(Path.GetFullPath(@"Output/Result.pptx"), FileMode.Create, FileAccess.ReadWrite);
32+
presentation.Save(outputStream);
33+
```
34+
35+
More information about encrypting presentations can be found in this [documentation](https://help.syncfusion.com/document-processing/powerpoint/powerpoint-library/net/security) section.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Add shapes to a PowerPoint Presentation using C#
2+
3+
The Syncfusion [.NET PowerPoint Library](https://www.syncfusion.com/document-processing/powerpoint-framework/net/powerpoint-library) (Presentation) enables you to create, read, and edit PowerPoint files programmatically without Microsoft Office or interop dependencies. Using this library, you can **add shapes to a PowerPoint Presentation** using C#.
4+
5+
## Steps to add shapes programmatically
6+
7+
Step 1: Create a new .NET Core console application project.
8+
9+
Step 2: Install the [Syncfusion.Presentation.Net.Core](https://www.nuget.org/packages/Syncfusion.Presentation.Net.Core) NuGet package as a reference to your project from [NuGet.org](https://www.nuget.org/).
10+
11+
Step 3: Include the following namespaces in the Program.cs file.
12+
13+
```csharp
14+
using Syncfusion.Presentation;
15+
using System.IO;
16+
```
17+
18+
Step 4: Add the following code snippet in Program.cs file to add shapes to the PowerPoint Presentation.
19+
20+
```csharp
21+
//Load or open an PowerPoint Presentation.
22+
using IPresentation pptxDoc = Presentation.Create();
23+
//Add a blank slide to Presentation.
24+
ISlide slide = pptxDoc.Slides.Add(SlideLayoutType.Blank);
25+
//Add normal shape to slide.
26+
slide.Shapes.AddShape(AutoShapeType.Cube, 50, 200, 300, 300);
27+
//Get a picture as stream.
28+
using FileStream imageStream = new FileStream(Path.GetFullPath(@"Data/Image.jpg"), FileMode.Open);
29+
//Add picture to the shape collection.
30+
IPicture picture = slide.Shapes.AddPicture(imageStream, 373, 83, 526, 382);
31+
using FileStream outputStream = new(Path.GetFullPath(@"Output/Result.pptx"), FileMode.Create, FileAccess.ReadWrite);
32+
pptxDoc.Save(outputStream);
33+
```
34+
35+
More information about adding shapes can be found in this [documentation](https://help.syncfusion.com/document-processing/powerpoint/powerpoint-library/net/working-with-shapes) section.

0 commit comments

Comments
 (0)