home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-2001 - Modelworks Software
-
- /**
- @Tool: unfoldAll~expands all lines.
- @EndTool:
- @Summary: unfoldAll~expands all lines
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var lines = editor.getLines();
- var childIndex = lines.getNextSiblingLineIndex(0);
- while (childIndex != -1)
- {
- lines.unfoldLine(childIndex);
- childIndex = lines.getNextSiblingLineIndex(childIndex);
- }
- lines.update("Unfold All");
- }
- }
-
- !!/Script
-
-