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
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).

Signature
C#
C#
 public boolean EnvelopeVisible{ get; set; }
Signature
vb.net
vb.net
Public Property EnvelopeVisible() As Boolean
Remarks

This option is set to false by default.

Example
Code Block
csharp
csharp
titleC#

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

          //--- Set IncludeFooterInBorder
          viewSettings.IncludeFooterInBorder = false;
        
Code Block
vb.net
vb.net
titlevb.net

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

          '--- Set IncludeFooterInBorder
          viewSettings.IncludeFooterInBorder = False