Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Wiki Markup
{description}
{excerpt}Sets or returns a {{boolean}} that represents whether or not Word will display an envelope overlay with this document \(if there is one\).{excerpt}
{signature:C#}
 public boolean EnvelopeVisible{ get; set; }
{signature}{signature:vb.net}
Public Property EnvelopeVisible() As Boolean
{signature}
{remarks}This option is set to {{false}} by default.

{remarks}
{example}{code:csharp|title=C#}

          //--- Return IncludeFooterInBorder
          bool includeFooter = viewSettings.IncludeFooterInBorder;

          //--- Set IncludeFooterInBorder
          viewSettings.IncludeFooterInBorder = false;
        {code}
{code:vb.net|title=vb.net}

          '--- Return IncludeFooterInBorder
          Dim includeFooter As Boolean = viewSettings.IncludeFooterInBorder

          '--- Set IncludeFooterInBorder
          viewSettings.IncludeFooterInBorder = False
        {code}

{example}