{description}
{excerpt}Sets or returns the size of watermark text.{excerpt}
{signature:C#}
 public double Size{ get; set; }
{signature}{signature:vb.net}
Public Property Size() As Double
{signature}
{example}{code:csharp|title=C#}

          WordApplication app = new WordApplication();
          Document doc = app.Create();
          Watermark wmark = doc.Watermark;
          wmark.Text = "CONFIDENTIAL";
          wmark.Size = 36;
        {code}
{code:vb.net|title=vb.net}

          Dim app As New WordApplication()
          Dim doc As Document = app.Create()
          Dim wmark As Watermark = doc.Watermark
          wmark.Text = "CONFIDENTIAL"
          wmark.Size = 36
        {code}

{example}