Skip to content

Latest commit

 

History

History
52 lines (30 loc) · 1.29 KB

Visio.Document.CanUndoCheckOut.md

File metadata and controls

52 lines (30 loc) · 1.29 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Document.CanUndoCheckOut method (Visio)
vis_sdr.chm10560085
vis_sdr.chm10560085
Visio.Document.CanUndoCheckOut
aa271635-73ef-b681-364c-49d515fd54cb
06/08/2017
medium

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

[!includeSupport and feedback]