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.)

<table class="wysiwyg-macro" data-macro-name="unmigrated-wiki-markup" style="background-image: url(/plugins/servlet/confluence/placeholder/macro-heading?definition=e3VubWlncmF0ZWQtd2lraS1tYXJrdXB9&amp;locale=en_GB&amp;version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre>
 public int Zoom{ get; set; }
</pre></td></tr></table>
<p>Public Property Zoom() As Integer</p>

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

          //--- Set Zoom
          ps.Zoom = 75;
        

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

          '--- Set Zoom
          ps.Zoom = 75