Line removing in listview

Fox

Active Member
Licensed User
Longtime User
Hey guys is it possible that i can remove the begin and end line of an field in listview?

By code?
 

derez

Expert
Licensed User
Longtime User
listview1.removeat(listview1.size - 1) '- for the last
listview1.removeat(0) ' - for the first
 
Upvote 0
Top