op.listToOutline
| Syntax |
op.listToOutline (theList, adrOutline)
|
| Params |
theList is a list to be converted to an outline. adrOutline is an address of an outline in which to insert the list.
|
| Action |
Converts theList to an outline and inserts it.
|
| Returns |
theList.
|
| Examples |
local (myList = {"1", {"1.1", "1.2"}, "2"});op.listToOutline (myList, @workspace.notepad) » {"1", {"1.1", "1.2"}, "2"}
|
| Notes |
Subheads are nested lists. The insertion takes place at the current position in the outline.
|
| See Also |
op.outlineToList
|