ListView SubItems

  • Thread starter Thread starter T Cordon
  • Start date Start date
T

T Cordon

In VB 6 I could assign a .Tag value not only to the ListItem, but also to
each of its subitems. I can't seem to find a way to do this in VB.NET
ListView Control/ListViewItem.

Is this possible? Any Examples?

Thanks
 
Hey Cordon

ListViewItem does have a Tag property but you are right that ListViewSubItem does not have a Tag property. However, you can create a class that inherits the class ListViewSubItem and provide your own Tag property

Regards, Jakob.
 
Back
Top