Document.RunAutoMacro method (Word)
Runs an auto macro that's stored in the specified document. If the specified auto macro doesn't exist, nothing happens.
Syntax
expression. RunAutoMacro
( _Which_
)
expression Required. A variable that represents a Document object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
Which | Required | WdAutoMacros | The auto macro to run. |
Remarks
Use the Run method to run any macro.
Example
This example runs the AutoOpen macro in the active document.
ActiveDocument.RunAutoMacro Which:=wdAutoOpen
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.