How do you reset the Zoom in Visual Studio 2010 and above

Visual StudioIde

Visual Studio Problem Overview


How do you reset the "Zoom" in VS 2010 and above back to normal?

CTRL+SCROLL WHEEL lets you zoom in/out with Visual Studio 2010/2012/2013/2015/2017, but I'd like to get back to the initial 100%.

Visual Studio Solutions


Solution 1 - Visual Studio

There is a select box for this at the bottom left of the editor window - choose 100% ;)

zoom control

I was unable to find a keyboard shortcut for it, though zooming in and out can be done using Ctrl + > and Ctrl + <.

Please note the horizontal scroll bar must be turned on to see the zoom level.

Tools / Options / Text Editor / All Languages / Scroll Bars


Another option (Visual Studio 2013/2015) is to use Ctrl with the mouse wheel (up to zoom in, down to zoom out).

Solution 2 - Visual Studio

There's a zoom control in the bottom-left of the code editor. You can pick 100% from there, or type it by hand.

Solution 3 - Visual Studio

In Visual Studio 2015/2017/2019 (easy to miss if using a dark theme):

enter image description here

Solution 4 - Visual Studio

You can try VSCommands extension from Visual Studio Gallery, it adds several new features around zooming in VS2010

alt text

Solution 5 - Visual Studio

Visual Studio 2017 has an extension "Reset Zoom" by Mads Kristensen and it adds a keyboard shortcut (Ctrl+0, Ctrl+0). https://marketplace.visualstudio.com/items?itemName=MadsKristensen.ResetZoom

By default, the keyboard shortcut is Ctrl+0,Ctrl+0 but can be changed to be whatever you like.

I also have R# and the default shortcut did not show up for me but manually applying it worked.

Go to Tools -> Options -> Environment -> Keyboard and look for the command View.ZoomReset to change the keyboard shortcut.

Solution 6 - Visual Studio

In Visual Studio Ultimate 2013, at bottom-left from screen:

enter image description here

Solution 7 - Visual Studio

If you are using latest version you can also resize the content in visual studio by selecting

> ctrl+ will zoom in and ctrl- will zoom out.

to do manually goto

> preference->settings

and UserSetting file will be opened in the editor change.For default zoom

> window.zoomlevel:0

and to zoom in

> window.zoomlevel:1,2,3......

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBrett VeenstraView Question on Stackoverflow
Solution 1 - Visual StudioOdedView Answer on Stackoverflow
Solution 2 - Visual StudioDan PuzeyView Answer on Stackoverflow
Solution 3 - Visual StudiosilkfireView Answer on Stackoverflow
Solution 4 - Visual StudioRegistered UserView Answer on Stackoverflow
Solution 5 - Visual StudioGedas KutkaView Answer on Stackoverflow
Solution 6 - Visual Studiokcho0View Answer on Stackoverflow
Solution 7 - Visual StudioMadhiView Answer on Stackoverflow