ListConvertNumToStr

InstallShield 2026 » InstallScript Language Reference

Project: This information applies to InstallScript projects.

The ListConvertNumToStr function converts each numeric element in listNumber to its string equivalent and appends it to listString.

Syntax

ListConvertNumToStr (listString, listNumber);

Parameters

ListConvertNumToStr Parameters

Parameter

Description

listString

Specifies the string list to which to append the converted numbers. The list identified by listString must already have been initialized by a call to ListCreate.

listNumber

Specifies a number list. The list identified by listNumber must already have been initialized by a call to ListCreate.

Return Values

ListConvertNumToStr Return Values

Return Value

Description

>= ISERR_SUCCESS

Indicates that the function successfully converted the number list to a string list.

< ISERR_SUCCESS

Indicates that the function was unable to convert the number list to a string list.

Comments

The function uses NumToStr to convert the numeric elements to strings; if the conversion fails for an element in listNumber, a null string ("") is appended to listString for that element.

See Also