Skip to content

Commit 9117558

Browse files
Merge pull request #84 from DharanitharanA/master
908311-Resolved Layout slide and Section samples issues
2 parents 2f46c17 + cce2d6d commit 9117558

File tree

2 files changed

+1
-1
lines changed
  • Sections/Remove-section/.NET/Remove-section
  • Slides/Add-slide-with-existing-slide-layout/.NET/Add-slide-with-existing-slide-layout/Data

2 files changed

+1
-1
lines changed

Sections/Remove-section/.NET/Remove-section/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
//Remove the second section from the PowerPoint presentation.
88
pptxDoc.Sections.Remove(pptxDoc.Sections[1]);
99
//Save the PowerPoint Presentation as stream.
10-
using FileStream outputStream = new(Path.GetFullPath(@"Ouptut/Result.pptx"), FileMode.Create, FileAccess.ReadWrite);
10+
using FileStream outputStream = new(Path.GetFullPath(@"Output/Result.pptx"), FileMode.Create, FileAccess.ReadWrite);
1111
pptxDoc.Save(outputStream);
1212
pptxDoc.Close();

0 commit comments

Comments
 (0)