Skip to content

Commit 8174162

Browse files
Updated Examples v24.2.0
1 parent 08fd35d commit 8174162

File tree

3 files changed

+390
-1
lines changed

3 files changed

+390
-1
lines changed

FileFormat.Slides.Examples.Usage/Program.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ static void Main (string[ ] args)
3636
//styledListExamples.AddListItemsInAnExistingList(filename: "test.pptx");
3737

3838
//styledListExamples.RemoveListItemsInAnExistingList(filename: "test.pptx");
39+
40+
TableExamples tableExamples= new TableExamples();
41+
42+
//tableExamples.CreateSimpleTableInASlide(filename: "sample.pptx");
43+
//tableExamples.CreateTableWithTableStylingsInASlide(filename: "sample.pptx");
44+
//tableExamples.CreateTableWithRowStylingsInASlide(filename: "sample.pptx");
45+
tableExamples.CreateTableWithCellStylingsInASlide(filename: "sample.pptx");
3946
}
4047
}
4148
}

FileFormat.Slides.Examples/StyledListExamples.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class StyledListExamples
1515
private const string newDocsDirectory = "../../../Presentations/New";
1616
private const string existingDocsDirectory = "../../../Presentations/Existing";
1717
/// <summary>
18-
/// Initializes a new instance of the <see cref="SlideExamples"/> class.
18+
/// Initializes a new instance of the <see cref="StyledListExamples"/> class.
1919
/// Prepares the directory 'Presentations/New' for storing or loading PowerPoint(PPT or PPTX) presentations
2020
/// at the root of the project.
2121
/// If the directory doesn't exist, it is created. If it already exists,

0 commit comments

Comments
 (0)