Document.ClearCustomMenus Method

Visio Automation Reference

Restores the built-in Microsoft Office Visio menus.

Version Information
 Version Added:  Visio 4.0

Syntax

expression.ClearCustomMenus

expression   A variable that represents a Document object.

Return Value
Nothing

Remarks

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.

Visual Basic for Applications
  
Public Sub ClearCustomMenus_Example() 
'Tell Visio to use the built-in menus. 
ThisDocument.ClearCustomMenus 
Visio.Application.ClearCustomMenus 

End Sub

See Also