Insert Watermark in Word Document using C#

HI,

I wanted to Insert Watermark in Word Document as shown in the attached document test.docx (56.2 KB). Please help me with a suitable solution.

Thank you

@Gptrnt

Following article shows how to Insert Watermark in Word Document. Hope this helps you.

Working with Watermark

Code to Insert Watermark in Word Document

Document doc = new Document(dataDir + "Document.doc");

TextWatermarkOptions options = new TextWatermarkOptions()
{
    FontFamily = "Arial",
    FontSize = 36,
    Color = Color.Black,
    Layout = WatermarkLayout.Horizontal,
    IsSemitrasparent = false
};

doc.Watermark.SetText("Test", options);
doc.Save(dataDir + "AddTextWatermark_out.docx");