Skip to content

Latest commit

 

History

History
57 lines (33 loc) · 1.71 KB

Visio.Windows.PersistsEvents.md

File metadata and controls

57 lines (33 loc) · 1.71 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Windows.PersistsEvents property (Visio)
vis_sdr.chm11714080
vis_sdr.chm11714080
Visio.Windows.PersistsEvents
1315c3e7-f911-dd34-7412-43e345af849a
06/08/2017
medium

Windows.PersistsEvents property (Visio)

Indicates whether an object is capable of containing persistent events in its EventList collection. Read-only.

Syntax

expression.PersistsEvents

expression A variable that represents a Windows object.

Return value

Integer

Remarks

Every object that has an EventList property also has a PersistsEvents property. To be persistable, an event's action code must be visActCodeRunAddon, but it must also be in the EventList collection of an object whose PersistsEvents property is True. The only objects that currently persist events are Document, Master, and Page objects.

Whether a persistable event actually does persist depends on the value of its Persistent property.

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to use the PersistsEvents property to determine if an object is capable of containing persistent events. Executing the macro prints 1 (True), 1 (True), and 0 (False) in the Immediate window for the Document, Page, and Window objects, respectively.

 
Public Sub PersistsEvents_Example() 
 
 Dim vsoDocument As Visio.Document 
 
 Set vsoDocument = Documents.Add("") 
 Debug.Print vsoDocument.PersistsEvents 
 Debug.Print ActivePage.PersistsEvents 
 Debug.Print ActiveWindow.PersistsEvents 
 
End Sub

[!includeSupport and feedback]