SlideEx background dimensions required

I used slide.Background.Width with Slide class

Now I tried using the same with SlideEx classs. But I could not finf such member to get the slide background size.

I need the slide background dimensions with SlideEx class.

Please tell me the property to be used.

Hi,


Please use the following code snippet to get the slide size in PPTX.

PresentationEx pres = new PresentationEx();
float wi= pres.SlideSize.Size.Width;
float hi = pres.SlideSize.Size.Height;

Many Thanks,