Skip to content

Commit

Permalink
Releasing v24.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
muhammadumargroupdocs committed Aug 21, 2024
1 parent 20c4124 commit 3effe60
Show file tree
Hide file tree
Showing 7 changed files with 1,347 additions and 9 deletions.
31 changes: 22 additions & 9 deletions FileFormat.Slides-Test/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -393,18 +393,31 @@ static void Main()
//presentation.SaveAllNotesToTextFile("D:\\AsposeSampleData\\Notes.txt");
presentation.Save();*/

/* Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\draw.pptx");
/* Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\draw.pptx");
Slide slide = new Slide();
Triangle triangle = new Triangle();
triangle.Width = 500.0;
triangle.Height =300.0;
triangle.X = triangle.Width / 2;
triangle.Y = triangle.Height / 2;
triangle.BackgroundColor = "5f7200";
slide.DrawTriangle(triangle);
presentation.AppendSlide(slide);
presentation.Save();*/

Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\draw.pptx");
Slide slide = new Slide();

Circle circle = new Circle();
circle.Width = 500.0;
circle.Height =300.0;
circle.X = circle.Width / 2;
circle.Y = circle.Height / 2;
circle.BackgroundColor = "5f7200";
slide.DrawCircle(circle);
Diamond diamond = new Diamond();
diamond.Width = 500.0;
diamond.Height = 300.0;
diamond.X = diamond.Width / 2;
diamond.Y = diamond.Height / 2;
diamond.BackgroundColor = "5f7200";
slide.DrawDiamond(diamond);
presentation.AppendSlide(slide);
presentation.Save();*/
presentation.Save();

/*Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\draw.pptx");
Slide slide = presentation.GetSlides()[2];
Expand Down
Loading

0 comments on commit 3effe60

Please sign in to comment.