Application.ListCommands method (Word)

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. A variable that represents an Application object.

Parameters

Name Required/Optional Data type Description
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.

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

See also

Application Object

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.