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
vb.net
vb.net
Public ReadOnly Property ViewSettings() As WordViewSettings

Example

Code Block
csharp
csharp
titleC#

          WordViewSettings oWordViewSettings = oDocument.ViewSettings;
        
Code Block
vb.net
vb.net
titlevb.net

          Dim oWordViewSettings As WordViewSettings = oDocument.ViewSettings
        
Example