Reading existing watermark properties

Aspose word .net how to read existing watermark properties. Like Watermark text, style and rotation angle etc…

@sarathisathish90 Watermarks in MS Word document are simple shape in the header behind main content. To distinguish them among other shapes MS Word and Aspose.Words use special shape names that starts either from "PowerPlusWaterMarkObject" or "WordPictureWatermark" as shown in the code below:

Document doc = new Document("C:\\Temp\\in.docx");

foreach (Shape s in doc.GetChildNodes(NodeType.Shape, true))
{
    if (s.Name.Contains("PowerPlusWaterMarkObject") || s.Name.Contains("WordPictureWatermark"))
    {
        // The shape is watermark
        // ..................
    }
}

Such way you can get properties of watermark shapes.