Skip to content

libcURL.ListPtr.Item

Andrew Lambert edited this page Aug 19, 2015 · 14 revisions

#libcURL.ListPtr.Item

##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

Clone this wiki locally