Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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#
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}{signature:vb.net
vb.net
}
Public Property EnvelopeVisible() As Boolean
Remarks

This option is set to false by default.

{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}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle