Multi-level bullets in pptx slides

Does slides for java support multi-level bullets in pptx. From what we can tell, there is no API support for this for pptx. In the API for PPT there is a support for setting the text offset, so we are able to do the second level bullets there.

If there is support or a thread on this, can you point us in the right direction?

Thanks


Hi Dan,


I like to share that you need to use ParagraphEx.setDepth() method. Please use the code snippet given here and add the following statement just before saving the presentation. Hopefully, it will fulfill your requirements. Please share, if I may help you further in this regard.

para2.setDepth ((short)2);

Many Thanks,