Document.CanCheckIn method (Visio)
Specifies whether a document can be checked into a Microsoft SharePoint Server computer.
Syntax
expression.CanCheckIn
expression A variable that represents a Document object.
Return value
Boolean
Remarks
You cannot check in a file that is not in a checked-out state or stored in a document library on a computer running Microsoft SharePoint Server or Microsoft SharePoint Foundation.
Example
This example checks the server to see if the specified document can be checked in, and if it can, checks it back into the server.
Sub CheckDocIn (varDocCheckIn As Variant)
If Documents.Item(varDocCheckIn).CanCheckIn = True Then
Documents.Item(varDocCheckIn).CheckIn
MsgBox varDocCheckIn & " has been checked in."
Else
MsgBox "This file cannot be checked in " & _
"at this time. Please try again later."
End If
End Sub
To call the preceding CheckDocIn subroutine, use the following subroutine and replace servername/workspace/drawing.vdx with the path to and name of an actual file located on a Microsoft SharePoint Server computer.
Sub DocIn()
Call CheckDocIn _
(varDocCheckIn:="https://servername/workspace/drawing.vdx ")
End Sub
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.