Sets or returns the layout of watermark text.

public Layout WatermarkLayout{ get; set; }
Public Property WatermarkLayout() As Layout
 
          WordApplication app = new WordApplication();
          Document doc = app.Create();
          Watermark wmark = doc.Watermark;
          wmark.Text = "CONFIDENTIAL";
          wmark.WatermarkLayout = Watermark.Layout.Diagonal;
        
          Dim app As New WordApplication()
          Dim doc As Document = app.Create()
          Dim wmark As Watermark = doc.Watermark
          wmark.Text = "CONFIDENTIAL"
          wmark.WatermarkLayout = Watermark.Layout.Diagonal