views:

573

answers:

1

Hi

It would also be useful to be able to check the "Requires Checkout" flag as well. I thought it might be a property on the SPDocumentLibrary object, but I can't see it.

Do I need to look in one of the admin namespaces...?

Cheers

Matt

+4  A: 

Require approval is represented by the Boolean property EnableModeration on the Microsoft.SharePoint.SPList class. Require checkout is controlled by the property ForceCheckout on the same class. Remember to also call the Update() method on the SPList class to save your changes to the database.

Lars Fastrup
Thanks - obvious really :-)
Matt