Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
50 lines (27 loc) · 811 Bytes

invisibleapp-purgeundo-method-visio.md

File metadata and controls

50 lines (27 loc) · 811 Bytes
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
InvisibleApp.PurgeUndo Method (Visio)
vis_sdr.chm17516450
vis_sdr.chm17516450
visio
Visio.InvisibleApp.PurgeUndo
8f1ed9a6-1e1e-0059-d0df-1b628e0f45ff
06/08/2017

InvisibleApp.PurgeUndo Method (Visio)

Empties the Microsoft Visio queue of undo actions.

Syntax

expression . PurgeUndo

expression A variable that represents an InvisibleApp object.

Return Value

Nothing

Remarks

After calling the PurgeUndo method, no operation performed before the call can be reversed.

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to use the PurgeUndo method to clear the undo list.

 
Public Sub PurgeUndo_Example() 
 
 Application.PurgeUndo 
 
End Sub