Name
Listview.Rename -- rename an entry (V1.1)
Synopsis
mui.DoMethod(id, "Rename", pos, column1$, ...)
Function
Renames the listview entry at the specified position. If the listview has multiple columns, you need to pass as many arguments as there are columns in the listview. It is not possible to rename only a single column entry - this method always affects the complete row so you need to pass as many strings as there are columns in your listview.

The entry position is specified in the "pos" argument. This can be an absolute index position starting at 0 for the first entry or one of the following special values:

Active
Rename the active entry.

All strings you pass to this method can use text formatting codes. See Text formatting codes for details.

Inputs
id
id of the listview object
pos
entry position as absolute number or special value (see above)
column1$
new text for entry in the first column
...
more entries if listview has multiple columns

Show TOC