Package.RegisterEditorFactory Method
Registers an editor factory with Visual Studio.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.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
factory
Type: Microsoft.VisualStudio.Shell.Interop.IVsEditorFactoryThe editor factory to register.
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:
Add a RegisterEditorExtensionAttribute to your Package class.
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.Shell Namespace