GetStringList

concerns

The GetStringList attribute function returns a list, where all entries are converted to strings.

 

Syntax

GetStringList()

Return value

Type

Description

String()

List, where all values are converted to strings

Parameter

None

An error will be raised if the conversion can’t be executed successful.

 

Example:

 

Dim NumList() As Double, SList() As String

 

NumList := {10.45, 20.67, 30.89}

 

SList := NumList.GetStringList

 

MsgBox(SList(0).Mid(3, 1))

#Shows a dot