Check masterslide in pptx

Hello,

How to know a slide is masterslide or not in pptx. In ppt i was doing the following thing

slide.isMasterSlide()

Hi Priyank,


I have observed the requirement shared and like to share that in case of Pptx we have separate slide collection for normal and master slides as against Ppt where you have same collection for normal and master slides. So, you do not need to have a check if any given slide is master or not. You can although get that which master slide belongs to any slide.

PptxSlide.getLayoutSlide().getMasterSlide();


Many Thanks,

Thank you Mudassir for your information. I will try to use the same.