DrawingControl.DocumentSaved Event
Visio Automation Reference |
Occurs after a document is saved.
Version Information
Version Added: Visio 4.1
Syntax
Private Sub expression_DocumentSaved(ByVal doc As [IVDOCUMENT])
expression A variable that represents a DrawingControl object.
Parameters
Name | Required/Optional | Data Type | Description |
---|---|---|---|
doc | Required | [IVDOCUMENT] | The document that was saved. |
Remarks
If you are using Microsoft Visual Basic or Visual Basic for Applications (VBA), the syntax in this topic describes a common, efficient way to handle events.
If you want to create your own Event objects, use the Add or AddAdvise method. To create an Event object that runs an add-on, use the Add method as it applies to the EventList collection. To create an Event object that receives notification, use the AddAdvise method. To find an event code for the event you want to create, see Event codes.
Example
This example shows how to create a class module to handle events fired by a source object in Microsoft Office Visio, for example, the Document object. The module consists of the function VisEventProc, which uses a Select Case block to check for three events: DocumentSaved, PageAdded, and ShapesDeleted. Other events fall under the default case (Case Else). Each Case block constructs a string (strMessage) that contains the name and event code of the event that fired. Finally, the function displays the string in the Immediate window.
Copy this sample code into a new class module in VBA or Visual Basic, naming the module clsEventSink. You can then use an event-sink module to create an instance of the clsEventSink class and Event objects that send notifications of event firings to the class instance. To see how to create an event-sink module, refer to the example for the AddAdvise method.
Visual Basic for Applications |
---|
|
See Also