Extensibility Extension Points in C#

Last modified: September 26, 2025

Introduction

Extension points allow you to hook functionality into various areas of the Studio Pro IDE. ExtensionPoint is a base class that extension developers can inherit from. Once inherited, your functionality will be loaded by Studio Pro. These classes all have the *Extension suffix, inherit from the ExtensionBase base class, and include a few virtual or abstract members.

ExtensionPoint is the only way to add custom behavior to Studio Pro. All other APIs provided solely to support the implementation or expression of these behaviors.

To be injected, your class must be decorated with the ExportAttribute, as shown in the example above. This attribute is part of the Managed Extensibility Framework that is used by Studio Pro.

List of Available Extension Points

Studio Pro UI Extensions

  • ContextMenuExtension – allows injecting new context menu items into model elements

  • MenuExtension – allows injecting new menu items into the Studio Pro menu bar

  • DockablePaneExtension – allows introducing new dockable pane, like Connector or Documentation; panes integrate with Studio Pro layout system automatically.

There are additional features that provide access to the following:

Studio Pro and MxBuild Extensions