FormRegionCollectionBase Class

Definition

Provides access to IFormRegion objects in an Outlook add-in project.

public ref class FormRegionCollectionBase abstract : Microsoft::Office::Tools::IExtension, System::Collections::Generic::ICollection<Microsoft::Office::Tools::Outlook::IFormRegion ^>, System::Collections::Generic::IEnumerable<Microsoft::Office::Tools::Outlook::IFormRegion ^>, System::Collections::Generic::IList<Microsoft::Office::Tools::Outlook::IFormRegion ^>
public abstract class FormRegionCollectionBase : Microsoft.Office.Tools.IExtension, System.Collections.Generic.ICollection<Microsoft.Office.Tools.Outlook.IFormRegion>, System.Collections.Generic.IEnumerable<Microsoft.Office.Tools.Outlook.IFormRegion>, System.Collections.Generic.IList<Microsoft.Office.Tools.Outlook.IFormRegion>
type FormRegionCollectionBase = class
    interface IList<IFormRegion>
    interface ICollection<IFormRegion>
    interface seq<IFormRegion>
    interface IEnumerable
    interface IExtension
Public MustInherit Class FormRegionCollectionBase
Implements ICollection(Of IFormRegion), IEnumerable(Of IFormRegion), IExtension, IList(Of IFormRegion)
Inheritance
FormRegionCollectionBase
Implements

Remarks

This collection contains all of the form regions that are associated with your Outlook add-in. To access the FormRegionCollectionBase object in your project, use the Globals.FormRegions property. For more information, see Global Access to Objects in Office Projects.

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

FormRegionCollectionBase(IList<IFormRegion>)

Properties

Base

Gets a IList<T> of IFormRegion objects in the FormRegionCollectionBase.

Explicit Interface Implementations

ICollection<IFormRegion>.Add(IFormRegion)
ICollection<IFormRegion>.Clear()
ICollection<IFormRegion>.Contains(IFormRegion)
ICollection<IFormRegion>.CopyTo(IFormRegion[], Int32)
ICollection<IFormRegion>.Count
ICollection<IFormRegion>.IsReadOnly
ICollection<IFormRegion>.Remove(IFormRegion)
IEnumerable.GetEnumerator()
IEnumerable<IFormRegion>.GetEnumerator()
IExtension.ExtensionBase
IList<IFormRegion>.IndexOf(IFormRegion)
IList<IFormRegion>.Insert(Int32, IFormRegion)
IList<IFormRegion>.Item[Int32]
IList<IFormRegion>.RemoveAt(Int32)

Applies to