I recently worked with code to open a PowerPoint object (vb.net) and processed each slide with a slide. If the processing slide is not the zero or the main slide, I need to skip and go to the next.
Can someone show me how to check if this slide is a master slide? Is there any way to check it by slide type?
Public Sub CheckForProprtychecker(ByVal Presn As PowerPoint.Presentation)
For SlideIndex As Integer = 1 To Presn.Slides.Count()
If Presn.Slides(SlideIndex) Is Nothing Then
Continue For
End If
''
Next
End Sub
source
share