In Visual Studio (2008) there a command to collapse/expand all the sections of code in a file?
|
feedback
|
|
CTRL + M + O will collapse all. CTRL + M + L will expand all. CTRL + M + P will expand all and disable outlining. CTRL + M + M will collapse/expand the current section. These options are also in the context menu under Outlining. | |||||||||||||||||
feedback
|
|
Ctrl-M, Ctrl-L collapses/expands (toggles) all regions. | |||||||
feedback
|
| |||||||
feedback
|
|
CTL + M + L expands all CTL + M + O collapses all Check here if you're looking for other shortcuts - these 2 are just a few of the many that are available. | |||||
feedback
|
|
Are you refering to the toggle outlining? You can do Control-M then Control-L for toggle all outlining | |||
|
feedback
|
|
all the shortcuts in visual studio http://www.dofactory.com/ShortCutKeys/ShortCutKeys.aspx | |||
|
feedback
|
|
Yes there's a keystroke command, see this link for a how to: http://weblogs.asp.net/mrdave/archive/2004/09/17/230732.aspx | ||||
|
feedback
|
|
If you mean shortcut then CTRL + "M" + "M": This one will collapse the region your cursor is at whether its a method, namespace or whatever for collapsing code blocks, regions and methods. The first will collapse only the block/method or region your cursor is at while the second will collapse the entire region you are at. http://www.dev102.com/2008/05/06/11-more-visual-studio-shortcuts-you-should-know/ | |||
|
feedback
|