
Region folding in ActionScript
Region folding like in .NET is possible with FlashDevelop using special comments:
Code:
[-] //{ region Public methods
...
//} endregion
Can be folded into:
Code:
[+] //{ region Public methods
Tips:
- you can use the Match Brace (Ctrl+M) command to jump between the start and the end of the region,
- 'region' and 'endregion' are only "cosmetic" but are a usefull information.