Sets or returns whether a text watermark will be semitransparent or not.

public boolean Semitransparent{ get; set; }
Public Property Semitransparent() As Boolean
 
          WordApplication app = new WordApplication();
          Document doc = app.Create();
          Watermark wmark = doc.Watermark;
          wmark.Text = "CONFIDENTIAL";
          wmark.Semitransparent = true;
        
          Dim app As New WordApplication()
          Dim doc As Document = app.Create()
          Dim wmark As Watermark = doc.Watermark
          wmark.Text = "CONFIDENTIAL"
          wmark.Semitransparent = True