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}{signature:
}
Signature
vb.net
vb.net
Public Property EnvelopeVisible() As Boolean
{signature}
{remarks}This option is set to {{false}} by default.

{remarks}
{example}{code:csharp|title=C#}
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} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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

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