Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

deoRequireToolbars

deoRequireToolbars(
g_plugin
)
=> l_toolbarNames

Description

Returns a list of toolbar names (string) that are to be customized by the plugin. A plugin can customize toolbars of a main application, or those of another plugin. For a plugin to declare which toolbars need customization, re-define method deoRequireToolbars.

Arguments

g_plugin

Specifies an instance (stdobj) of the plugin

Value Returned

l_toolbarNames

Returns a list of toolbar names that will be customized by the plugin

Example

(defclass MyPlugin (BasePlugin) ())
  (defmethod deoRequireToolbars ((this MyPlugin))
    (cons "View" (callNextMethod this)))

Return to top
 ⠀
X