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
Wiki Markup
{description}
{excerpt}Sets or returns a [WordViewSettings.ZoomType|WordViewSettings.ZoomType] object that represents the zoom type the document will be displayed with when opened by Word. Possible values: None, FullPage, PageWidth\).{excerpt}
{signature:C#}
 public ZoomType Zoom{ get; set; }
{signature}{signature: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 > Zoom... > Zoom to section

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

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

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

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

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

{example}