Yeah, that isn't in there yet mostly because I haven't figured out what the correct syntax should be ... are you meaning something like what you can do with the listbox object:

$ListBox.List = 1,2,3,4,5,6

If yes, yeah - I haven't nailed down the syntax for ListView yet, maybe like

$ListView.Items = 1,2,3,4,5,6

Is this what your meaning ?

-Shawn

[ps] Just as an FYI, one might ask themselves why there are two methods for deleting columns (or items), the first example above:

$ListView.Columns.Remove(n)

asks the Columns collection to delete a particular column from its collection, the second example:

$ListView.Columns(n).Remove

asks a particular column to remove ITSELF from the collection - subtle difference but same effect.