Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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