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}{signature:
}
Signature
vb.net
vb.net
Public Property Zoom() As ZoomType
{signature}
{remarks}This option is set to [None|WordViewSettings.ZoomType#None] by default.

MS Word equivalent: View menu > 
Remarks

This option is set to None 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 DisplayOutlineLevels
          int displayOutlineLevels = viewSettings.DisplayOutlineLevels;

          //--- Set ZoomType
          viewSettings.DisplayOutlineLevels = 4;
        
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}


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

          '--- Set DisplayOutlineLevels
          viewSettings.DisplayOutlineLevels = 4
        
{code} {example}