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 an int that represents the zoom percentage this document will be displayed with when opened by Word. Possible values: Normal, Outline, Page.

Signature
C#
C#
 public int ZoomPercentage{ get; set; }
Signature
vb.net
vb.net
Public Property ZoomPercentage() As Integer
Remarks

This option is set to 100 % by default.

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

Example
Code Block
csharp
csharp
titleC#

          //--- Return ZoomPercentage
          int zoomPercentage = viewSettings.ZoomPercentage;

          //--- Set ZoomPercentage
          viewSettings.ZoomPercentage = 50;
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Return ZoomPercentage
          Dim zoomPercentage As Integer = viewSettings.ZoomPercentage

          '--- Set ZoomPercentage
          viewSettings.ZoomPercentage = 50