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 an image watermark will be faded or not.
C#
public boolean Washout{ get; set; }
vb.net
Public Property Washout() As Boolean

Examples

 
C#
WordApplication app = new WordApplication();
Document doc = app.Create();
Watermark wmark = doc.Watermark;
wmark.Image = File.Open("somepic.gif");
wmark.Washout = true;
vb.net
Dim app As New WordApplication()
Dim doc As Document = app.Create()
Dim wmark As Watermark = doc.Watermark
wmark.Image = File.Open("somepic.gif")
wmark.Washout = True

Examples

 
  • No labels