OutlookAddIn Interface

 

Defines the core functionality of Outlook add-ins that you create by using the Office development tools in Visual Studio.

Namespace:   Microsoft.Office.Tools.Outlook
Assembly:  Microsoft.Office.Tools.Outlook (in Microsoft.Office.Tools.Outlook.dll)

[GuidAttribute("af8e9f42-f1c8-4a6c-8d64-d21168c8ad80")]
public interface class OutlookAddIn : AddIn, IBindableComponent, 
	IComponent, IDisposable

NameDescription
System_CAPS_pubpropertyBindingContext

(Inherited from IBindableComponent.)

System_CAPS_pubpropertyDataBindings

(Inherited from IBindableComponent.)

System_CAPS_pubpropertyDataHost

This API supports the product infrastructure and is not intended to be used directly from your code. (Inherited from AddIn.)

System_CAPS_pubpropertyDefaultExtension

Gets the default extension for this AddIn object.(Inherited from AddIn.)

System_CAPS_pubpropertyExtension

Gets a custom extension for this AddIn object.(Inherited from AddIn.)

System_CAPS_pubpropertyHostContext

This API supports the product infrastructure and is not intended to be used directly from your code. (Inherited from AddIn.)

System_CAPS_pubpropertyItemProvider

This API supports the product infrastructure and is not intended to be used directly from your code. (Inherited from AddIn.)

System_CAPS_pubpropertySite

(Inherited from IComponent.)

System_CAPS_pubpropertyTag

This API supports the product infrastructure and is not intended to be used directly from your code. (Inherited from AddIn.)

NameDescription
System_CAPS_pubmethodDispose()

(Inherited from IDisposable.)

NameDescription
System_CAPS_pubeventBindingContextChanged

This API supports the product infrastructure and is not intended to be used directly from your code. (Inherited from AddIn.)

System_CAPS_pubeventDisposed

(Inherited from IComponent.)

System_CAPS_pubeventFormRegionFactoryResolve

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.

System_CAPS_pubeventShutdown

Occurs when the add-in is about to be unloaded. (Inherited from AddIn.)

System_CAPS_pubeventStartup

Occurs when the add-in is loaded, after all the initialization code in the assembly has run. (Inherited from AddIn.)

When you create an Outlook add-in in by using the Office development tools in Visual Studio, you typically do not use the OutlookAddIn interface directly. Instead, use the generated ThisAddIn class in your project. The ThisAddIn class derives most of its members from the OutlookAddInBase class. This base class redirects all calls to its members to an internal implementation of the OutlookAddIn interface in the Visual Studio Tools for Office runtime.

For more information, see Programming VSTO Add-Ins.

System_CAPS_noteNote

This interface is implemented by the Visual Studio Tools for Office runtime. It is not intended to be implemented in your code. For more information, see Visual Studio Tools for Office Runtime Overview.

This documentation describes the version of this type that is used in Office projects that target the .NET Framework 4 or later. In projects that target the .NET Framework 3.5, this type might have different members and the code examples provided for this type might not work. For documentation about this type in projects that target the .NET Framework 3.5, see the following reference section in the Visual Studio 2008 documentation: http://go.microsoft.com/fwlink/?LinkId=160658.

Return to top
Show: