Please enable JavaScript to view this site.

 

void = List_SetValue(sListVarName, nIndex, sSomeTextValue)

 

This macro function is used to change the value part of the string associated with the entry at position nIndex of an existing list.

 

In the image, on the right, the various parts of a list are shown.

 

Each element of a list contains a string and, optionally, a number.

If the string contains an equal sign (=), then it is possible to access the text on the left as the "name"  and the text on the right as the "value".

 

Consider the macro code below, which adds some entries to a list and then calls various list functions to get back some information.

List_Clear(sListCountries)
// put some values in the list
List_Add(sListCountries, 'Egypt=Ägypten'10133)     // item 1
List_Add(sListCountries, 'Albania=Albanien'10165)  // item 2
List_Add(sListCountries, 'Algeria=Algerien'10183)  // item 3
List_Add(sListCountries, 'Andorra=Andorra'10167)   // item 4
List_Add(sListCountries, 'Armenia=Armenien'10180)  // item 5
// now get some information back from the list
sResult = List_GetValue(sListCountries, 5// 'Armenien'
// make changes to the elements of the list
List_SetValue(sListCountries, 5'Arménie')
// read from item 3 again
sResult = List_GetValue(sListCountries, 5// 'Arménie' 

When using lists, don't forget to always use the function List_Create to create your list at the top of the macro, and then the function List_Destroy to destroy it at the end of the macro.

 

See also: list macro functions.

 


Topic 178370, last updated on 20-May-2020