InvisibleApp.ClearCustomToolbars 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.ClearCustomToolbars
expression A variable that represents an InvisibleApp object.
Return value
Nothing
Remarks
Calling the ClearCustomToolbars method on an object without custom toolbars has no effect.
Example
This example shows how to clear custom toolbars for the ThisDocument and Application objects and restore the built-in Microsoft Visio toolbars.
Public Sub ClearCustomToolbars_Example()
'Tell Visio to use the built-in toolbars.
ThisDocument.ClearCustomToolbars
Visio.Application.ClearCustomToolbars
End Sub
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.