Description
Sets or returns the layout of watermark text.C#
public Layout WatermarkLayout{ get ; set ; } |
vb.net
Public Property WatermarkLayout() As Layout |
Examples
C#
WordApplication app = new WordApplication(); Document doc = app.Create(); Watermark wmark = doc.Watermark; wmark.Text = "CONFIDENTIAL" ; wmark.WatermarkLayout = Watermark.Layout.Diagonal; |
vb.net
Dim app As New WordApplication() Dim doc As Document = app.Create() Dim wmark As Watermark = doc.Watermark wmark.Text = "CONFIDENTIAL" wmark.WatermarkLayout = Watermark.Layout.Diagonal |