Hi,
In order to delete a out of the box content type from a list/Library (item, document, etc..), you need to delete it from name as the associated Id in the list is a child of the site contentType.
When you add a site content type to a list or library, SharePoint Foundation makes local copies of any columns that are referenced by the content type and adds them to the list's fields
So to delete for example the item content type, you will need to:
SPContentTypeId ListitemContentTypeId = list.ContentTypes[web.ContentTypes[SPBuiltInContentTypeId.item].Name].Id;list.ContentTypes.Delete(ListitemContentTypeId);
Namaste!
You have tried to order the content type list for a list and you are not able to do it. You always receive an error when UniqueContentTypeOrder is set. Take a look at the following steps in order to resolve the issue.
SPFolder folder = list.RootFolder; IList<SPContentType> contentTypeCollection = new List<SPContentType>(); contentTypeCollection = folder.ContentTypeOrder; contentTypeCollection.RemoveAt(0); folder.UniqueContentTypeOrder = contentTypeCollection; folder.Update();
in the code above the rootfolder for the list is updated with a new content type collection without the first item. This will update fine the list. the differences:
Bye!