Package.RegisterEditorFactory Method

Registers an editor factory with Visual Studio.

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

Syntax

'宣言
Protected Sub RegisterEditorFactory ( _
    factory As IVsEditorFactory _
)
'使用
Dim factory As IVsEditorFactory

Me.RegisterEditorFactory(factory)
protected void RegisterEditorFactory(
    IVsEditorFactory factory
)
protected:
void RegisterEditorFactory(
    IVsEditorFactory^ factory
)
protected function RegisterEditorFactory(
    factory : IVsEditorFactory
)

Parameters

Exceptions

Exception Condition
ArgumentNullException

factory is a 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.

Permissions

See Also

Concepts

How to: Register Editor Factories

Reference

Package Class

Package Members

Microsoft.VisualStudio.Shell Namespace

Package