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

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

Signature
C#
C#
 public WordViewSettings ViewSettings{ get; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public ReadOnly Property ViewSettings() As WordViewSettings
{signature}
{example}{code:csharp|title=C#}

Example

Code Block
csharp
csharp
titleC#

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

          Dim oWordViewSettings As WordViewSettings = oDocument.ViewSettings
        {code}

{example}
Example