PowerPoint selection pane

How to access the selection pane of powerpoint and their object names?

Hi Yash,

You can refer to the content model hierarchy, it shows where the presentation elements are located.

Also, here is a small sample that you can try out:

var presentation = PresentationDocument.Load("input.pptx");
var slide = presentation.Slides[0];

foreach (var drawing in slide.Content.Drawings.OfType<VisualDrawing>())
    Console.WriteLine(drawing.Name);

I hope this helps.

Regards,
Mario