Sets or returns text to use as the document's watermark.

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