Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

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

Examples

 
  • No labels