Deletes a column.
ListView controls
listviewname.DeleteColumn ( index )
Argument |
Description |
---|---|
listviewname |
The name of the ListView control from which you want to delete a column |
index |
The index number of the column you want to delete |
Integer. Returns 1 if it succeeds and -1 if an error occurs.
This example deletes the second column in a ListView control:
lv_list.DeleteColumn(2)