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

Sets or returns a WordViewSettings.ZoomType object that represents the zoom type the document will be displayed with when opened by Word. Possible values: None, FullPage, PageWidth).

Signature
C#
C#
 public ZoomType Zoom{ get; set; }
Signature
vb.net
vb.net
Public Property Zoom() As ZoomType
Remarks

This option is set to None by default.

MS Word equivalent: View menu > Zoom... > Zoom to section

Example
Code Block
csharp
csharp
titleC#

          //--- Return DisplayOutlineLevels
          int displayOutlineLevels = viewSettings.DisplayOutlineLevels;

          //--- Set ZoomType
          viewSettings.DisplayOutlineLevels = 4;
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Return DisplayOutlineLevels
          Dim displayOutlineLevels As Integer = viewSettings.DisplayOutlineLevels

          '--- Set DisplayOutlineLevels
          viewSettings.DisplayOutlineLevels = 4