Skip to content

Latest commit

 

History

History
67 lines (42 loc) · 1.57 KB

Visio.Document.CanCheckIn.md

File metadata and controls

67 lines (42 loc) · 1.57 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.CanCheckIn method (Visio)
vis_sdr.chm10552020
vis_sdr.chm10552020
Visio.Document.CanCheckIn
99922339-631b-f60e-1d07-3ae9df134cf7
06/08/2017
medium

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

[!includeSupport and feedback]