Package.RegisterEditorFactory Method

Registers an editor factory with Visual Studio.

Namespace:  Microsoft.VisualStudio.Shell
Assembly:  Microsoft.VisualStudio.Shell.11.0 (in Microsoft.VisualStudio.Shell.11.0.dll)

Syntax

'Declaration
Protected Sub RegisterEditorFactory ( _
    factory As IVsEditorFactory _
)
protected void RegisterEditorFactory(
    IVsEditorFactory factory
)
protected:
void RegisterEditorFactory(
    IVsEditorFactory^ factory
)
member RegisterEditorFactory : 
        factory:IVsEditorFactory -> unit
protected function RegisterEditorFactory(
    factory : IVsEditorFactory
)

Parameters

Exceptions

Exception Condition
ArgumentNullException

factory is nulla null reference (Nothing in Visual Basic).

Remarks

To register an editor factory for a VSPackage, perform the following steps:

  1. Add a RegisterEditorExtensionAttribute to your Package class.

  2. Override the Initialize method. In your implementation of the Initialize method, call the RegisterEditorFactorymethod and pass the instance of your editor factory.

Editor factories are automatically unregistered when the package is disposed. If the editor factory object implements IDisposable, its Dispose method is called after the factory has been unregistered with Visual Studio.

.NET Framework Security

See Also

Reference

Package Class

Microsoft.VisualStudio.Shell Namespace

Package

Other Resources

How to: Register Editor Factories