Code folding lets you collapse (hide) and expand (show) your code to make it easier to navigate and read. RAD Studio generates code that contains code folding regions, but you can add your own regions as needed.
{$region 'Optional text that appears when the code block is folded'} . . . {$endregion}
#region Optional text that appears when the code block is folded . . . #endregion
#pragma region optional text . . . #pragma end_region
The region is marked with a minus (-) sign.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|