Share via


CanCheckIn Method [Visio 2003 SDK Documentation]

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

boolRet = object**.CanCheckIn**

boolRet     Boolean. True (non-zero) if the document can be checked in; otherwise, False (zero).

object     Required. An expression that returns a Document object.

Version added

2002 SR-1

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.

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 replaceservername/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.

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

Applies to | Document object

See Also | CanCheckOut method | CheckIn method | CheckOut method