I want to add an image to the slide thumbnail in left panel, but it should not show in the Slide.
I found the following code to add image to slide:
Microsoft.Office.Interop.PowerPoint.Shape viShape = slide.Shapes.AddPicture(
lockImgFile,
Microsoft.Office.Core.MsoTriState.msoFalse ,
Microsoft.Office.Core.MsoTriState.msoTrue,
ICON_X, ICON_Y,
ICON_W, ICON_H);
viShape.ZOrder(Microsoft.Office.Core.MsoZOrderCmd.msoBringToFront);
but that's not I wanted because the image would show in the slide in the editing pane.