Share via


DocumentSave Event

Home Page (Objects)OverviewFAQReference

Applies to: Application object

Occurs after a specified document is saved.

Syntax

object**_DocumentSave(document)**

Parameters

object

An expression that evaluates to an Application object.

document

The Document object that triggers this event.

Remarks

Developer Studio fires this event after the document is saved.

For an overview about using event code, see the introduction to events.

Example

Following is a sample event handler for the DocumentSave event. Copy this into your macro file, and then insert the appropriate code.

sub    Application_DocumentSave(theDocument)
   ' Insert code to handle the event here
end sub

See Also   BeforeDocumentClose event, DocumentOpen event.