Name
Listtree.Move -- move an entry to a new position
Synopsis
mui.DoMethod(id, "Move", olistnode$, otreenode$, nlistnode$, ntreenode$)
Function
Move an entry to the position after a defined node.

Olistnode$ specifies the node which list is used to find the entry. The search is started at the head of the list. This can be the string identifier of a node or one of the following special values:

Root
The root list.

Active
The list of the active node.

Otreenode$ specifies the node which should be moved. This can be the string identifier of a node or one of the following special values:

Head
The head of the list defined in olistnode$ is moved.

Tail
The tail of the list is moved.

Active
The active node is moved.

Nlistnode$ specifies the node whose list is used to find the entry. The search is started at the head of the list. This can be the string identifier of a node or one of the following special values:

Root
The root list.

Active
The list of the active node.

Ntreenode$ specifies the node which is the predecessor of the entry which is inserted. This can be the string identifier of a node or one of the following special values:

Head
The node is moved to the head of the list defined in nlistnode$.

Tail
The node is moved to the tail of the list.

Active
The node is moved after the active node.

Sorted
The node is moved to the list using the sort hook.

Inputs
id
id of the listtree object
olistnode$
id of list node to use or special value (see above)
otreenode$
id of tree node to use or special value (see above)
nlistnode$
id of list node to use or special value (see above)
ntreenode$
id of tree node to use or special value (see above)

Show TOC