Share via


XmlForm.TaskPanes Property (Microsoft.Office.InfoPath)

Gets a reference to the TaskPaneCollection that is associated with a form template.

Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in microsoft.office.infopath.dll)

Syntax

'Declaration
Public MustOverride ReadOnly Property TaskPanes As TaskPaneCollection
'Usage
Dim instance As XmlForm
Dim value As TaskPaneCollection

value = instance.TaskPanes
public abstract TaskPaneCollection TaskPanes { get; }

Property Value

A TaskPaneCollection that contains any TaskPane objects associated with the form template.

Exceptions

Exception type Condition

InvalidOperationException

The TaskPanes property was called from the Loading event.

Remarks

This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

This type or member can be accessed only from code running in forms opened in Microsoft Office InfoPath 2007.

Example

In the following example, the TaskPanes property of the XmlForm class is used to set a reference to the TaskPaneCollection associated with the form template:

TaskPaneCollection formTaskPanes = this.TaskPanes;
Dim formTaskPanes As TaskPaneCollection  = Me.TaskPanes

See Also

Reference

XmlForm Class
XmlForm Members
Microsoft.Office.InfoPath Namespace