006. xfnString2Coll

xfnString2Coll 함수

구문

반환값

참고

예제

코드

Dim strStrs As xProperties

Dim strs As xProperty

Dim cnt As Integer

Set strStrs = xfnString2Coll("Teamdata21")

If strStrs Is Nothing Then

    Debug.Print "Nothing"

else

    For Each strs In strStrs

        Debug.Print strs.Value

    Next

End If

'------------결과값---------------

T

e

a

m

d

a

t

a

2

1