#region equivalent in CodeGear RAD Studio? Similar way to group code? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T03:23:50Zhttp://stackoverflow.com/feeds/question/952402http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/952402/region-equivalent-in-codegear-rad-studio-similar-way-to-group-code6#region equivalent in CodeGear RAD Studio? Similar way to group code?stevosaurus2009-06-04T18:49:30Z2009-09-21T04:53:35Z
<p>I was wondering if there is an equivalent to Visual Studio's #regions in RAD Studio.</p>
<p>We use CodeGear's delphi and c++builder IDEs where I work and I would love to be able to use something like regions. </p>
<p>My coworkers and I have yet to find an equivalent way of grouping code... do you know of any?</p>
<p>Thanks! </p>
http://stackoverflow.com/questions/952402/region-equivalent-in-codegear-rad-studio-similar-way-to-group-code/952451#95245114Answer by eKek0 for #region equivalent in CodeGear RAD Studio? Similar way to group code?eKek02009-06-04T19:00:03Z2009-06-04T19:00:03Z<p>You can apply a special {$REGION 'Region Name'} directive to mark a "named" collapsible regions in the code editor. </p>
<p>To mark code as a region, surround it with the REGION and ENDREGION directives. You may include a caption that will be displayed when the code is folded and hidden.</p>
<p>Here's an exampe of the two (nested) regions:</p>
<pre><code>{$REGION 'Iterate Panels'}
for j := 0 to StatusBar1.Panels.Count - 1 do
begin
x := x + StatusBar1.Panels[j].Width;
{$REGION 'Inner if Region'}
if mpt.X < x then
begin
panel := j;
Break;
end;
{$ENDREGION}
end;
{$ENDREGION}
</code></pre>
<p>To fold or unfold a region, click on the [+] (if expanded) or [-] (if collapsed) marker left to the $region directive. This will look:</p>
<p><img src="http://z.about.com/d/delphi/1/G/o/a/coderegions.gif" alt="alt text" /></p>
http://stackoverflow.com/questions/952402/region-equivalent-in-codegear-rad-studio-similar-way-to-group-code/955676#9556763Answer by Moritz Beutel for #region equivalent in CodeGear RAD Studio? Similar way to group code?Moritz Beutel2009-06-05T12:54:29Z2009-06-05T12:54:29Z<p>For C++Builder, use <pre>#pragma region [name]</pre> and <pre>#pragma end_region</pre>, as described in the <a href="http://docs.embarcadero.com/products/rad_studio/radstudio2007/RS2007_helpupdates/HUpdate4/EN/html/devwin32/pndsnpragmaregion_xml.html" rel="nofollow">documentation</a>.</p>
http://stackoverflow.com/questions/952402/region-equivalent-in-codegear-rad-studio-similar-way-to-group-code/959536#9595362Answer by MarkF for #region equivalent in CodeGear RAD Studio? Similar way to group code?MarkF2009-06-06T11:57:13Z2009-06-06T11:57:13Z<p>As an addition to eKek0's answer note that (at least in d2009) you can select the code lines that you want to put in a region, right click and choose Surround | Region. You'll be prompted for the region name.</p>
http://stackoverflow.com/questions/952402/region-equivalent-in-codegear-rad-studio-similar-way-to-group-code/1452940#14529400Answer by AlZuma for #region equivalent in CodeGear RAD Studio? Similar way to group code?AlZuma2009-09-21T04:53:35Z2009-09-21T04:53:35Z<p>What is the use of region if its not working correct? Sure u can fold it and its looks cool, but after u edit some code or make new function its automaticly unfolds. This bug is on Borlad studio c++, rad studio 2009/2010. Useless.</p>