Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const string template = "Pink Template.potx";
- using (var maker = new Maker())
- using (var presentation = maker.OpenFrom(template))
- {
- presentation
- .AddTitleSlide()
- .Title("I <3 NY")
- .AddSlide("Image")
- .File("image.jpg")
- .Caption("Brooklyn Bridge")
- .Title("A Day in Manhattan")
- .AddSlide("Content")
- .Top("I love...")
- .Center("New York")
- .Bottom("...this city")
- .AddSlide("Content")
- .Top("Stay away from")
- .Center("CENTRAL PARK")
- .Bottom("during nighttime...")
- .AddSlide("Sourcecode")
- .Code("code.cs")
- .FontSize(18)
- .HightlightLine(1)
- .HightlightLine(9)
- .HightlightLine(14)
- .Save("I-love-NY");
- }
Advertisement
Add Comment
Please, Sign In to add comment