ListCommands Method

Applies To

Application object.

Description

Creates a new document and then inserts a table of Word commands along with their associated shortcut keys and menu assignments.

Syntax

expression.ListCommands(ListAllCommands)

expression Required. An expression that returns an Application object.

ListAllCommands Required Boolean. True to include all Word commands and their assignments (whether customized or built-in). False to include only commands with customized assignments.

See Also

CommandBars property, KeyBindings property.

Example

This example creates a new document that lists all Word commands along with their associated shortcut keys and menu assignments. The example then prints and closes the new document without saving changes.

Application.ListCommands ListAllCommands:=True
With ActiveDocument
    .PrintOut
    .Close SaveChanges:=wdDoNotSaveChanges
End With