Skip to content

Commit 308fc02

Browse files
Published 24.9.0
1 parent 3effe60 commit 308fc02

File tree

91 files changed

+2747
-14006
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+2747
-14006
lines changed

FileFormat.Slides-Test/Program.cs

+50-2
Original file line numberDiff line numberDiff line change
@@ -406,9 +406,9 @@ static void Main()
406406
presentation.AppendSlide(slide);
407407
presentation.Save();*/
408408

409-
Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\draw.pptx");
409+
/*Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\draw.pptx");
410410
Slide slide = new Slide();
411-
411+
412412
Diamond diamond = new Diamond();
413413
diamond.Width = 500.0;
414414
diamond.Height = 300.0;
@@ -417,8 +417,56 @@ static void Main()
417417
diamond.BackgroundColor = "5f7200";
418418
slide.DrawDiamond(diamond);
419419
presentation.AppendSlide(slide);
420+
presentation.Save();*/
421+
422+
/*Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\draw.pptx");
423+
Slide slide = new Slide();
424+
425+
Line line = new Line();
426+
line.Width = 300.0;
427+
line.Height = 50.0;
428+
line.X = line.Width / 2;
429+
line.Y = line.Height + 200 / 2;
430+
slide.DrawLine(line);
431+
presentation.AppendSlide(slide);
432+
presentation.Save();*/
433+
/*
434+
Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\draw.pptx");
435+
Slide slide = new Slide();
436+
437+
Arrow arrow = new Arrow();
438+
arrow.Width = 300.0;
439+
arrow.Height = 50.0;
440+
arrow.X = arrow.Width / 2;
441+
arrow.Y = arrow.Height + 200 / 2;
442+
slide.DrawArrow(arrow);
443+
presentation.AppendSlide(slide);
444+
presentation.Save();
445+
*/
446+
/*
447+
Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\draw.pptx");
448+
Slide slide = new Slide();
449+
450+
DoubleArrow doubleArrow = new DoubleArrow();
451+
doubleArrow.Width = 300.0;
452+
doubleArrow.Height = 50.0;
453+
doubleArrow.X = doubleArrow.Width / 2;
454+
doubleArrow.Y = doubleArrow.Height + 200 / 2;
455+
slide.DrawDoubleArrow(doubleArrow);
456+
presentation.AppendSlide(slide);
420457
presentation.Save();
458+
*/
459+
Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\draw.pptx");
460+
Slide slide = new Slide();
421461

462+
CurvedLine curvedLine = new CurvedLine();
463+
curvedLine.Width = 300.0;
464+
curvedLine.Height = 50.0;
465+
curvedLine.X = curvedLine.Width / 2;
466+
curvedLine.Y = curvedLine.Height + 200 / 2;
467+
slide.DrawCurvedLine(curvedLine);
468+
presentation.AppendSlide(slide);
469+
presentation.Save();
422470
/*Presentation presentation = Presentation.Open("D:\\AsposeSampleData\\draw.pptx");
423471
Slide slide = presentation.GetSlides()[2];
424472
slide.Rectangles[0].Remove();

FileFormat.Slides-Test/obj/ConsoleApp1.csproj.nuget.dgspec.json

-259
This file was deleted.

FileFormat.Slides-Test/obj/ConsoleApp1.csproj.nuget.g.props

-15
This file was deleted.

FileFormat.Slides-Test/obj/ConsoleApp1.csproj.nuget.g.targets

-2
This file was deleted.

FileFormat.Slides-Test/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs

-4
This file was deleted.

FileFormat.Slides-Test/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfo.cs

-23
This file was deleted.

FileFormat.Slides-Test/obj/Debug/netcoreapp3.1/ConsoleApp1.AssemblyInfoInputs.cache

-1
This file was deleted.

FileFormat.Slides-Test/obj/Debug/netcoreapp3.1/ConsoleApp1.GeneratedMSBuildEditorConfig.editorconfig

-3
This file was deleted.
Binary file not shown.

FileFormat.Slides-Test/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CopyComplete

Whitespace-only changes.

FileFormat.Slides-Test/obj/Debug/netcoreapp3.1/ConsoleApp1.csproj.CoreCompileInputs.cache

-1
This file was deleted.

0 commit comments

Comments
 (0)