Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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}
{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}
Signature
C#C#
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}{signature:vb.net
vb.net
}
Public Property Zoom() As Integer
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle