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 an {{int}} that represents the zoom percentage this document will be displayed with when opened by Word. Possible values: Normal, Outline, Page.{excerpt}
{signature:C#}
 public int ZoomPercentage{ get; set; }
{signature}{signature:vb.net}
Public Property ZoomPercentage() As Integer
{signature}
{remarks}This option is set to {{100}} \% by default.

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

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

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

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

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

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

{example}