Description
Sets or returns whether a text watermark will be semitransparent or not.C#
public boolean Semitransparent{ get ; set ; } |
vb.net
Public Property Semitransparent() As Boolean |
Examples
C#
WordApplication app = new WordApplication(); Document doc = app.Create(); Watermark wmark = doc.Watermark; wmark.Text = "CONFIDENTIAL" ; wmark.Semitransparent = true ; |
vb.net
Dim app As New WordApplication() Dim doc As Document = app.Create() Dim wmark As Watermark = doc.Watermark wmark.Text = "CONFIDENTIAL" wmark.Semitransparent = True |