George Tomlinson
George Tomlinson

Reputation: 1911

Does anyone know how to zoom in on NetBeans code?

I want to enlarge the code I've written in NetBeans so it's easier to read. I can enlarge the output by using ctrl and '+', but it doesn't work on the code. Does anyone know how to do this?

Upvotes: 59

Views: 145764

Answers (7)

Andrew Ring
Andrew Ring

Reputation: 3343

Alt+Scroll Wheel (on mouse) will do it. If you want to change the font size, go to Tools>Options>Fonts&Colors [note: this is a large icon/tab]. From there, in the Syntax tab (default) click Default, then the '...' button next to Font. Change the font size here, and click Okay. Other fonts inherit this size, so that should be the only change.

Upvotes: 138

Dean Johnson
Dean Johnson

Reputation: 1

Lots of "mouse driven" answers here. But not everyone uses a mouse anymore. To Zoom In/Out of the Output Window of Netbeans 11.x do this, it's simple.

Press Ctrl while pressing the Arrow Up (to zoom in) and Arrow Down (to zoom in) keys on your keyboard.

Upvotes: 0

AHAMED AAQIB
AHAMED AAQIB

Reputation: 473

If you want to zoom In/Out the code file /source window use this below method.

press Alt key+ scroll Mouse wheel up for Zoom In and scroll Mouse wheel down for Zoom Out

If you want to zoom In/Out the output window/terminal use this below method.

press Ctrl key+ scroll Mouse wheel up for Zoom In and scroll Mouse wheel down for Zoom Out

Upvotes: 3

Ethan_ 0079
Ethan_ 0079

Reputation: 51

Just press "alt" and scrool and normally it's oke

Upvotes: 4

PichetNart
PichetNart

Reputation: 175

press { ALT (your keyboard) + Scroll wheel (your mouse) };

Upvotes: 13

Anchit
Anchit

Reputation: 171

Visit here and download the zooming plugin.

Steps to Install Plugin:

  1. Open Tools
  2. Select Plugin
  3. Goto Available Plugins Tab
  4. Search for Zoom and install the plugin
  5. Restart NetBeans

Upvotes: 1

kta
kta

Reputation: 20110

NetBeans 7.2 changes the behaviour slightly – now you need to initiate a press down click on the scroll wheel whilst scrolling to increase/decrease the font size. No keyboard assistance required! - ref http://www.craiglotter.co.za/2012/10/16/how-to-quickly-increase-or-descrease-the-font-size-in-netbeans-ide/

Upvotes: 6

Related Questions