Value is an item that you want to associate with that entry in the CLV.
For example, if your CLV was a list of text strings which described different websites, you may have
clv.addtextitem("Google","https://google.com")
so when the user taps the item
the clv_itemclick event is fired
private sub clv_itemclick(pos as int,value as object)
' if you clicked on the Google item, value will not contain "https://google.com"
'you would need to assign it to a string before use
end sub
Hope that helps.