In Visual Studio 2008: Is there a way for me to customly collapse bits of code similar to like how I can automatically collapse chunks of comments?
|
|
|
|
|
|
|
Your piece of code needs to be a block surrounded by, as desired:
If you can't collapse statement blocks, you need to enable this feature : Tools -> Options -> Text Editor -> C/C++ -> Formatting -> check everything in "outlining" Then, reopen the source file to reload outlining. |
||||||||||
|
|
|
TheSam is right, you can create collapsible chunks with the #pragma region and #pragma endregion statements. Here is a sample:
In the above sample, everything between the samples can be collapsed. You can also specify what text is displayed when it is collapsed. You can do that like this:
That would obviously display "The displayed text" when the region was collapsed. |
|||
|
|
