Im creating an add-on for impress, in which one of the feature is to add a slide. I could manage to add a blank slide by using XDrawPages for the current Componenet. How can i add a slide with someother layout(predefined layouts in impress) ? Thanks in advance ..

link|improve this question
You should use the DrawPage setMasterPage method to link the slide to a master. However this only manages to copy the background. Still figuring out how to copy the layout as well... – happy_emi Feb 8 at 12:28
feedback

1 Answer

So far I had no luck in setting the master's layout to a new slide. However I'm using this workaround:

model = desktop.getCurrentComponent()
model.duplicate(model.getDrawPages().getByIndex(0))

I basically duplicate the first slide (which I keep empty and delete as last step). This copies everything: master, layout, content.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.