パワーポイントで透かしを作成しようとしていますが、画像を追加できるコードを以下に示します。透かしのように画像の透明度を作成するにはどうすればよいですか
private void watermark_Click(object sender, RibbonControlEventArgs e)
{
PowerPoint.Application ppApp = Globals.ThisAddIn.Application;
PowerPoint.SlideRange ppslr = ppApp.ActiveWindow.Selection.SlideRange;
//ppApp.ActivePresentation.Slides.InsertFromFile("NepaSlide.pptx",2, 1,1);
//PowerPoint.ShapeRange ppShR = ppApp.ActiveWindow.Selection.ShapeRange;
int count= ppslr.Shapes.Count;
PowerPoint.Shape shape = ppslr.Shapes[count];
ppslr.Shapes.AddPicture("N-symbol.png",
Microsoft.Office.Core.MsoTriState.msoFalse,
Microsoft.Office.Core.MsoTriState.msoTrue,
shape.Left, shape.Top, shape.Width, shape.Height);
}