Gets or sets the display size of the worksheet, as a percentage (100 equals normal size, 200 equals double size, and so on).
[Visual Basic] Property Zoom As Integer [C#] int Zoom { get; set; } [C++] __property int get_Zoom(); __property void set_Zoom(int ); [JScript] function get Zoom() : int function set Zoom(int);
Integer. The display size of the worksheet, as a percentage.
This property affects only display size of the worksheet. Use the PageSetup.Zoom property to control the scale for printing.
This example scales Sheet1 by 150 percent.
[C#]
book.Worksheets["Sheet1"].Zoom = 150;
[Visual Basic]
book.Worksheets("Sheet1").Zoom = 150
[C++]
book->Worksheets->Item[S"Sheet1"]->Zoom = 150;
IWorksheet Interface | NativeExcel Namespace | IPageSetup.Zoom Property