views:

25

answers:

1

I want to add watermark to powerpoint file from c# by using powerpoint object library but I could not find any example/documentation which explains how to do it.

Is it possible at all? Any hints or suggestions?

+3  A: 

You need to make add Shape, set TextFrame.TextRange.Text to some string, set TextFrame.TextRange.Font to something big, rotate the shape, and send it to back.

SLaks
That indeed sounds like it would work. You should set the text to a light color, like gray.
Robert Harvey
Watermarks are also WordArt, but the concept is the same as SLaks describes. Also, if you're adding to all slides, you may want to just add the shape to the Master instead of each slide seperately.
Otaku