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 the percentage by which the size of the printed worksheet is adjusted. The printed worksheet can be enlarged up to 400\%, and reduced to 10\%.

 _(This is not supported for charts.)_{excerpt}
{signature:C#}
 public int Zoom{ get; set; }
{signature}{signature:vb.net}
Public Property Zoom() As Integer
{signature}
{example}{code:csharp|title=C#}

          //--- Get Zoom
          int zm = ps.Zoom;

          //--- Set Zoom
          ps.Zoom = 75;
        {code}
{code:vb.net|title=vb.net}

          '--- Get Zoom
          Dim zm As integer = ps.Zoom

          '--- Set Zoom
          ps.Zoom = 75
        {code}

{example}