SetItemText( _
ByVal tag As Object, _
ByVal value As String)
Event fired when the user edits the label of an item.
Cast the tag parameter to your own data type. Set the appropriate property to the value parameter that the user has entered.
GetItemText
Private Sub personListView_SetItemText(ByVal tag As Object, ByVal value As String)
Dim person As Person = DirectCast(tag, Person)
person.LastFirst = value
End Sub
Parameters:
| ByVal tag | As Object | |
| ByVal value | As String |