In Microsoft Interop PowerPoint library, I found a PlaceholderType named “Mixed”. Can you please explain me the purpose and uses of this “Mixed” type placeholder?
Please check the below code snippet for your reference.
PowerPoint.Application ppApplication =null; ppApplication = new PowerPoint.Application(); var Presentations = ppApplication.Presentations; var Presentation = Presentations.Open(@"Input.pptx", Office.MsoTriState.msoTrue, Office.MsoTriState.msoTrue, Office.MsoTriState.msoTrue); var Slides = Presentation.Slides; var slidee = Slides[1]; var shapes = slidee.Shapes; shapes.AddPlaceholder(Microsoft.Office.Interop.PowerPoint.PpPlaceholderType.ppPlaceholderMixed, 100, 100, 100, 100); Presentation.Save(); |