XmlForm.TaskPanes property

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
    Get
'Usage
Dim instance As XmlForm
Dim value As TaskPaneCollection

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

Property value

Type: Microsoft.Office.InfoPath.TaskPaneCollection
A TaskPaneCollection that contains any TaskPane objects associated with the form template.

Exceptions

Exception 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 InfoPath Filler.

Examples

In the following code 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