Effects for Aspose Slides c#

Hi,

I would like to add a peice of transparant text to every slide, so far I have the following:

rect = markSlide.Shapes.AddRectangle(250, 800, 3500, 3000);
rect.LineFormat.ShowLines = false;
rect.AddTextFrame("Draft");
rect.Rotation = 45;
tf = rect.TextFrame;
tf.WrapText = true;
para = rect.TextFrame.Paragraphs[0];
para.Alignment = TextAlignment.Left;
portion = para.Portions[0];
para.Portions[0].FontColor = System.Drawing.Color.FromArgb(127, 0, 0, 0);
para.Portions[0].FontEmbossed = true;
para.Portions[0].FontHeight = 96;

markSlide is the slide I'm trying to effect, Basically I want the word Draft on every slide, I've found AlphaBiLevel in the effects namespace, but can't work out how to impliment, could you point me in the right direction?

Thanks,

Foxster


This message was posted using Page2Forum from AlphaBiLevel Class - Aspose.Slides for .NET and Java

Dear Foxster ,

Thanks for considering Aspose.Slides.

Are you trying to add a watermark?