Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you create collapsible #Region like scopes in C++ within VS 2008?

I miss it so much (used it a lot in C#). can you do it in C++?

like image 219
RoyOsherove Avatar asked Sep 29 '08 08:09

RoyOsherove


People also ask

How do you make collapsible?

To make an animated collapsible, add max-height: 0 , overflow: hidden and a transition for the max-height property, to the panel class.

Can you create collapsible sections in Word?

The ability to collapse and expand content in your document is based on its outline level. You can quickly add an outline level and make part of your document collapsible by adding a heading using Word's built-in styles.

How do I create a collapsible header in Word?

Use Heading Styles Use the Heading styles 1, 2, and 3 under the Home tab to create collapsible menus as desired.

How do you make a collapsible list in HTML?

Close the head portion of the page, with the ending tag for the head of the page (</head>). Create the body of the HTML code. Type the tag for starting the body (<body>). Create the list content, including some HTML styling information for the users browser to use, for them to expand and collapse the list.


1 Answers

Yes, you can. See here.

#pragma region Region_Name
//Your content.
#pragma endregion Region_Name
like image 177
Matt Hanson Avatar answered Oct 25 '22 19:10

Matt Hanson