FormRegionControl Interface

 

Represents an Outlook form region that is based on a user control.

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

[GuidAttribute("78db499d-9c54-4fd3-9746-8b9ab0455df1")]
public interface class FormRegionControl : IDisposable

NameDescription
System_CAPS_pubpropertyFactory

Gets or sets the form region factory that is associated with this FormRegionControl.

System_CAPS_pubpropertyManifest

Gets the FormRegionManifest that describes how the form region appears in Outlook.

System_CAPS_pubpropertyOutlookFormRegion

Gets or sets the native form region object.

System_CAPS_pubpropertyOutlookItem

Gets the Outlook item in which the form region appears.

NameDescription
System_CAPS_pubmethodDispose()

(Inherited from IDisposable.)

NameDescription
System_CAPS_pubeventFormRegionClosed

Occurs before the form region is closed.

System_CAPS_pubeventFormRegionShowing

Occurs after an instance of the form region is created but before the form region appears.

Visual Studio generates an instance of a class that implements the FormRegionControl interface when you design a new form region in Visual Studio.

In most cases, you do not have to use this class directly. Instead, you can use the form region class that Visual Studio generates when you add a new Outlook Form Region item to your project.

The form region class inherits from FormRegionBase. You can accomplish most tasks related to the form region by using the events and properties in the form region class.

If you want to work with the FormRegionControl directly, call the Base property of the FormRegionBase class.

Return to top
Show: