tags:

views:

43

answers:

1

Hi, I am getting the document of particular document library of a sharepoint site in C#. I want to check whether the file in checkin mode or in checkout mode . how can i do that. can any one help me?

+1  A: 

Here you go, change parameter name as needed

if (spDestinationFile.Item.ParentList.ForceCheckout == true)

Have a look at this post about how it can be used.

Muhimbi