Projects.CanCheckOut method (Project)
Indicates whether Project can check out the specified project from a SharePoint document library.
Syntax
expression. CanCheckOut
( _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 if 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
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.