Increasing or decreasing the font size of your code in Visual Studio's text editor is almost required whenever VS is fired up on a projector. Anyone who has had to demo code, or give a talk at a user group, or present new technologies to their team has experienced the pain of increasing the font size through the Tools -> Options menu, followed by an inquiry to the crowd: "How's that? Is this font size readable by everyone?" Often times the selected size is not quite the right solution, and the process is repeated. Life as a presenter would be easier if only you could modify the font size through a simple keyboard command, similar to how browsers enable you adjust the font through the ctrl+ and ctrl- commands.
Macros.Samples.Accessibility.DecreaseTextEditorFontSizeDecreases the text editor font size in Visual Studio Macros.Samples.Accessibility.IncreaseTextEditorFontSizeIncreases the text editor font size in Visual Studio
Macros.Samples.Accessibility.DecreaseTextEditorFontSizeDecreases the text editor font size in Visual Studio
Macros.Samples.Accessibility.IncreaseTextEditorFontSizeIncreases the text editor font size in Visual Studio
Fortunately, this is easy with the help of Visual Studio's Sample Macros. To help show you the ropes of writing custom macros, VS ships with a collection samples, and two of these samples respectively increase and decrease the font size of the text editor. Right out of the box, Visual Studio comes with the ability to modify the font size for your code; all that remains is mapping these macros to the keyboard.
Anchoring these macros to specific keyboard commands is a simple process.
Remember Me