tags:

views:

75

answers:

1

Seems simple enough, but there doesn't seem to be a delete method on the SPList object to remove a view, or a Delete() method on the SPView item itself.

+2  A: 

Hi Paul

The Views property of the SPList returns a SPViewCollection which has a Delete method which takes the Id of the View as parameter

Note that SPList.Update() is not needed

Per Jakobsen