Reputation: 13451
How to know if a project is checked out or checked in from PSI?
Upvotes: 2
Views: 2054
Reputation: 60058
Use Project.ReadProjectList or Project.ReadProject.
This will return a ProjectDataTable in ProjectDataSet.Project. From there you can check the PROJ_CHECKOUTBY and PROJ_CHECKOUTDATE columns.
Upvotes: 3