What is the difference between SPList.ContentTypesEnabled and SPList.AllowContentTypes?

link|improve this question

45% accept rate
feedback

1 Answer

up vote 6 down vote accepted

SPList.ContentTypesEnabled

Gets or sets a Boolean value specifying whether content types are enabled for the list.

AllowContentTypes

Returns true if the list supports content types.

The first one can be used to get and set while the second one lets you know wether the list supports content types or not so that you can set the first one accordingly to enable content types.

link|improve this answer
but in my case, ContentTypesEnabled has a value of 'false' while allowcontenttypes has a value of 'true'. why is that? – Zee99 Nov 30 '10 at 15:58
That means your list supports content types but it is not enabled for your list. which you can enabled by setting SPList.ContentTypesEnabled = true; – Ashutosh Singh-MVP SharePoint Dec 1 '10 at 6:12
Ok thanks a lot, one last thing, to enable content types from SharePoint, we go to library settings --> advanced settings-->enable content types, but how to configure a list to NOT support content types? – Zee99 Dec 1 '10 at 8:24
DisallowContentTypes you can set this property as true or false in list definition be cautious in using this as you are doing this in list definition. – Ashutosh Singh-MVP SharePoint Dec 1 '10 at 9:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.