TaskPanesCollection interface

Contains a collection of TaskPaneObject objects that represent the task panes associated with a window in Microsoft InfoPath.

Namespace:  Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly:  Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)

Syntax

'Declaration
<GuidAttribute("096cd58d-0786-11d1-95fa-0080c78ee3bb")> _
Public Interface TaskPanesCollection _
    Inherits TaskPanes
'Usage
Dim instance As TaskPanesCollection
[GuidAttribute("096cd58d-0786-11d1-95fa-0080c78ee3bb")]
public interface TaskPanesCollection : TaskPanes

Remarks

This type is a wrapper for a coclass that is required by managed code for COM interoperability. Use this type to access the members of the COM interface implemented by this coclass. For information about the COM interface, including a link to descriptions of its members, seeTaskPanes.

The TaskPanesCollection collection provides properties that can be used to access a collection of task pane objects, and it is accessed through the TaskPanes property of the WindowObject object.

Note

The TaskPanesCollection collection can be used only to get the count of the TaskPaneObject objects that it contains and to return a reference to a specified TaskPaneObject object. It cannot be used to add or remove TaskPaneObject objects.

Examples

In the following example, the TaskPanes property of the WindowObject object is used to set a reference to the TaskPanes collection:

TaskPanes taskPanes = thisApplication.ActiveWindow.TaskPanes;

See also

Reference

TaskPanesCollection members

Microsoft.Office.Interop.InfoPath.SemiTrust namespace