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

Signature
C#
C#
<p> public int Zoom{ get; set; }</p>
Signature
vb.net
vb.net
<p>Public Property Zoom() As Integer</p>

Example
Code Block
csharp
csharp
titleC#
          //--- Get Zoom
          int zm = ps.Zoom;

          //--- Set Zoom
          ps.Zoom = 75;
        
Code Block
vb.net
vb.net
titlevb.net
          '--- Get Zoom
          Dim zm As integer = ps.Zoom

          '--- Set Zoom
          ps.Zoom = 75