vsto - Is there a way to add an image into slide thumbnail only in PowerPoint -


I want to add an image to the slide thumbnail in the left panel, but it should not be shown in the slide.

I found the following code to add an image to the 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 I do not want this because the image will appear in the slide in the edit panel.

You can not - thumbnails on the left are small versions of large slides. Whatever you put on the big slide, it will appear on the thumbnail.


Comments

Popular posts from this blog

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -