Skip to content

Latest commit

 

History

History
53 lines (32 loc) · 1.38 KB

Visio.Application.ClearCustomMenus.md

File metadata and controls

53 lines (32 loc) · 1.38 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.ClearCustomMenus method (Visio)
vis_sdr.chm10016110
vis_sdr.chm10016110
Visio.Application.ClearCustomMenus
01c7f266-e940-b02c-b77d-7178c9296f98
06/25/2019
medium

Application.ClearCustomMenus method (Visio)

Restores the built-in Microsoft Visio user interface.

Note

Starting with Visio 2010, the Microsoft Office Fluent user interface (UI) replaced the previous system of layered menus, toolbars, and task panes. VBA objects and members that you used to customize the user interface in previous versions of Visio are still available in Visio, but they function differently.

Syntax

expression.ClearCustomMenus

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

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

[!includeSupport and feedback]