When I add a watermark to my pdf it is on top of everything else so some of the pdf information becomes covered. I need the watermark to be behind everything else so that all data is visible with the watermark underneath the main data.
I am using version 3.5.6.0 of the Aspose.Pdf dll.
Below is how I am adding the watermark and it is the first thing I add after creating the pdf object.
'add the watermark
WaterMarkText = New Text("Confidential")
waterMark = New FloatingBox(400, 400)
WaterMarkText.TextInfo.FontSize = 70
WaterMarkText.TextInfo.Color = New Aspose.Pdf.Color("#D3D3D3")
WaterMarkText.TextInfo.RenderingMode = RenderingMode.FillText
WaterMarkText.PositioningType = PositioningType.PageRelative
WaterMarkText.RotatingAngle = 35
waterMark.Left = 100
waterMark.Top = 200
waterMark.Paragraphs.Add(WaterMarkText)
pdf.Watermarks.Add(waterMark)