Sets or returns a boolean that represents whether or not Word will display an envelope overlay with this document (if there is one).

 public boolean EnvelopeVisible{ get; set; }
Public Property EnvelopeVisible() As Boolean

This option is set to false by default.


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

          //--- Set IncludeFooterInBorder
          viewSettings.IncludeFooterInBorder = false;
        

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

          '--- Set IncludeFooterInBorder
          viewSettings.IncludeFooterInBorder = False