I am able to add a new slide, but it inserts it at the end of the template, is there a way to insert it at x position?
Say insert new slide at page 9 which would then push the next page to 10 etc
Using this to insert a new slide if it changes anything:
var layoutSlide = presentation.MasterSlides[1].LayoutSlides.First(ls => ls.Name == "Title and Content");
var slide = presentation.Slides.AddNew(layoutSlide);