Application.ClearCustomMenus Method (Visio)

Restores the built-in Microsoft Visio user interface.

Version Information

Version Added: Visio 4.0

Syntax

expression .ClearCustomMenus

expression A variable that represents an Application object.

Return Value

Nothing

Remarks

Note

Calling the ClearCustomMenus method on an object without custom menus has no effect.

Example

This example shows how to clear custom menus for the ThisDocument and Application objects and restore the built-in Visio menus.

 
Public Sub ClearCustomMenus_Example() 
 
 'Tell Visio to use the built-in menus. 
 ThisDocument.ClearCustomMenus 
 Visio.Application.ClearCustomMenus 
 
End Sub