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

...

Signature
vb.net
vb.net
Public Property ZoomPercentage() As Integer
Remarks

By default the worksheet will have a ZoomPercentage of 100, corresponding to the standard zoom level. Adjusting this property to a larger number will magnify the worksheet, making it so that the contents are larger but less can be displayed on the screen. Setting this property to a smaller number will zoom out, revealing more of the worksheet.

Exceptions
Exception
ArgumentException
ArgumentException

Thrown if you set the property to a value that is less than 10 or greater than 400

Example
Code Block
csharp
csharp
titleC#

          //--- Get Zoom
          int zoom = ws.ZoomPercentage;

          //--- Set Zoom
          ws.ZoomPercentage = 50;
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Get Zoom
          Dim zoom As Integer = ws.ZoomPercentage

          '--- Set Zoom
          ws.ZoomPercentage = 50