Document.CanUndoCheckOut method (Visio)

Determines whether a Microsoft Visio document is checked out from a Microsoft SharePoint Server site, so that if it is, the check-out can be subsequently undone.

Syntax

expression.CanUndoCheckOut

expression An expression that returns a Document object.

Return value

Boolean

Remarks

The CanUndoCheckOut method is similar to the Document.CanCheckIn method.

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to use the CanUndoCheckOut method to determine if the checkout of the active document from a SharePoint server site can be undone. Before running this macro, check out a Visio document from a SharePoint Server site.

Public Sub CanUndoCheckOut_Example 
    
    Dim boolCanUndo As Boolean 
    boolCanUndo = Visio.ActiveDocument.CanUndoCheckOut 
         
    Debug.Print boolCanUndo 
 
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.