Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns a WordViewSettings object that can be used to get and set various settings that pertain to how Word will display this document.

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

          WordViewSettings oWordViewSettings = oDocument.ViewSettings;
        
{code}
{code:vb.net
|title=vb.net
}

          Dim oWordViewSettings As WordViewSettings = oDocument.ViewSettings
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [WordViewSettings|WordViewSettings] object that can be used to get and set various settings that pertain to how Word will display this document.{excerpt}
{signature:C#}
 public WordViewSettings ViewSettings{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property ViewSettings() As WordViewSettings
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle