TaskPane.TaskPaneType property

Gets a value indicating the type of task pane represented by the TaskPaneObject object.

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

Syntax

'Declaration
ReadOnly Property TaskPaneType As XdTaskPaneType
    Get
'Usage
Dim instance As TaskPane
Dim value As XdTaskPaneType

value = instance.TaskPaneType
XdTaskPaneType TaskPaneType { get; }

Property value

Type: Microsoft.Office.Interop.InfoPath.SemiTrust.XdTaskPaneType

Remarks

If the TaskPaneType property returns 0, the task pane is a custom task pane. If the TaskPaneType property returns any other value, the task pane is a built-in task pane.

Note

The TaskPaneType property is based on XdTaskPaneType. These enumerated values are also used as arguments to the Item of the TaskPanesCollection for returning a reference to a specified type of task pane.

Important

This member can be accessed without restrictions.

Examples

In the following example, the TaskPanes collection is used to get a reference to the TaskPane object that represents the built-in Help task pane.

TaskPane objTaskPane = thisXDocument.View.Window.TaskPanes[4];
XdTaskPaneType ttype= objTaskPane.TaskPaneType;

See also

Reference

TaskPane interface

TaskPane members

Microsoft.Office.Interop.InfoPath.SemiTrust namespace