Document.RunAutoMacro Method

Word Developer Reference

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.

Visual Basic for Applications
  ActiveDocument.RunAutoMacro Which:=wdAutoOpen

See Also