Projects.CheckOut method (Project)

Checks out the specified file if it is stored in a SharePoint document library.

Syntax

expression.CheckOut (FileName)

expression A variable that represents a 'Projects' object.

Parameters

Name Required/Optional Data type Description
FileName Required String The name of the file to check out.

Return value

Boolean

Example

The following example verifies that a project is not checked out by another user. If the project can be checked out, the example copies the project to the local computer for editing.

Sub CheckOutProject(docCheckOut As String)  
  
 ' Determine whether project can be checked out.  
 If Projects.CanCheckOut(docCheckOut) = True Then  
 Projects.CheckOut docCheckOut  
 Else  
 MsgBox "Unable to check out this project at this time."  
 End If  
  
End Sub

See also

Projects Collection Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.