Document.CanCheckIn Method

Visio Automation Reference

Specifies whether a document can be checked into a Microsoft SharePoint Portal Server computer.

Version Information
 Version Added:  Visio 2002 SR-1

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 is not stored in an enhanced folder on a Microsoft SharePoint Portal Server computer.

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.

Visual Basic for Applications
  
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 in an enhanced folder on a Microsoft SharePoint Portal Server computer.

Visual Basic for Applications
  
Sub DocIn() 
    Call CheckDocIn _ 
        (varDocCheckIn:="http://servername/workspace/drawing.vdx") 
End Sub  

See Also