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}{signature:
}
Signature
vb.net
vb.net
Public Property ZoomPercentage() As Integer
{signature}
{remarks}This option is set to {{100}} \% by default.

MS Word equivalent: View menu > 
Remarks

This option is set to 100 % by default.

MS Word equivalent: View menu > Zoom...

>

Zoom

to

section {remarks} {example}{code:csharp|title=C#}

section

Example
Code Block
csharp
csharp
titleC#


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

          //--- Set ZoomPercentage
          viewSettings.ZoomPercentage = 50;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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

          '--- Set ZoomPercentage
          viewSettings.ZoomPercentage = 50
        
{code} {example}