-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.ListPtr.Item
Andrew Lambert edited this page Aug 19, 2015
·
14 revisions
##Method Signature
Function Item(Index As Integer) As String##Parameters
| Name | Type | Comment |
|---|---|---|
| Index | Integer | The index of the string to get. The first item is at Index 0
|
##Return value
A copy of the string at Index.
##Notes If the list does not contain a string at Index (or the list is empty,) an OutOfBoundsException will be raised. If the next item it the list invalid, a NilObjectException will be raised.
##Syntax example
Dim lst As libcURL.ListPtr = Array("Hello", "world", "!")
For i As Integer = 0 To lst.Count - 1
MsgBox(lst.Item(i))
Next##See also
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-26 Andrew Lambert, offered under the CC BY-SA 3.0 License.