OutlookAddInBase Class

Definition

Provides the base class for the ThisAddIn class in Outlook add-ins that you create by using Visual Studio.

public ref class OutlookAddInBase abstract : Microsoft::Office::Tools::AddInBase
public abstract class OutlookAddInBase : Microsoft.Office.Tools.AddInBase
type OutlookAddInBase = class
    inherit AddInBase
Public MustInherit Class OutlookAddInBase
Inherits AddInBase
Inheritance
OutlookAddInBase

Remarks

The OutlookAddInBase class provides functionality for Outlook add-ins that you create by using the Office Development tools in Visual Studio. The OutlookAddInBase class extends AddInBase class by providing methods that you can use to access form regions in the project. For more information, see Programming VSTO Add-Ins.

Usage

This type is used only in Office projects that target the .NET Framework 4 or later. The assembly that defines this type is not part of the Visual Studio Tools for Office runtime. You must deploy this assembly with your solution. For more information, see Assemblies in the Visual Studio Tools for Office Runtime.

Constructors

OutlookAddInBase(Factory, IServiceProvider, String, String)

Properties

Base

Gets the OutlookAddIn object that this OutlookAddInBase object extends.

BindingContext (Inherited from AddInBase)
DataBindings (Inherited from AddInBase)
DataHost (Inherited from AddInBase)
HostContext (Inherited from AddInBase)
ItemProvider (Inherited from AddInBase)
Site (Inherited from AddInBase)
Tag (Inherited from AddInBase)

Methods

BeginInit() (Inherited from AddInBase)
CreateRibbonExtensibilityObject()

Returns an object that implements the Microsoft.Office.Core.IRibbonExtensibility interface.

(Inherited from AddInBase)
CreateRibbonObjects()

Returns an array of IRibbonExtension objects to the CreateRibbonExtensibilityObject() method. The objects represent the Ribbons to display at run time.

(Inherited from AddInBase)
Dispose()

Releases the resources used by the AddInBase.

(Inherited from AddInBase)
EndInit() (Inherited from AddInBase)
FinishInitialization() (Inherited from AddInBase)
GetHostItem<T>(Type, String) (Inherited from AddInBase)
Initialize() (Inherited from AddInBase)
InitializeDataBindings() (Inherited from AddInBase)
OnShutdown() (Inherited from AddInBase)
OnStartup() (Inherited from AddInBase)
RequestComAddInAutomationService()

Returns an object in your add-in that can be used by other solutions.

(Inherited from AddInBase)
RequestService(Guid)

Returns an object that extends a feature in a Microsoft Office application.

(Inherited from AddInBase)

Events

BindingContextChanged (Inherited from AddInBase)
Disposed (Inherited from AddInBase)
FormRegionFactoryResolve

Occurs when the add-in loads, and when a form region name that is specified in the registry does not match the name of any form regions defined in the add-in.

Shutdown

Occurs when the add-in is about to be unloaded.

(Inherited from AddInBase)
Startup

Occurs when the add-in is loaded, after all the initialization code in the assembly has run.

(Inherited from AddInBase)

Explicit Interface Implementations

EntryPoint.BeginInit() (Inherited from AddInBase)
EntryPoint.EndInit() (Inherited from AddInBase)
EntryPoint.FinishInitialization() (Inherited from AddInBase)
EntryPoint.Initialize() (Inherited from AddInBase)
EntryPoint.InitializeDataBindings() (Inherited from AddInBase)
EntryPoint.OnShutdown() (Inherited from AddInBase)
EntryPoint.OnStartup() (Inherited from AddInBase)
IAddInExtension.CreateRibbonExtensibilityObject() (Inherited from AddInBase)
IAddInExtension.CreateRibbonObjects() (Inherited from AddInBase)
IAddInExtension.RequestComAddInAutomationService() (Inherited from AddInBase)
IAddInExtension.RequestService(Guid) (Inherited from AddInBase)
IExtension.ExtensionBase (Inherited from AddInBase)

Applies to