Share via


TaskPane.TaskPaneType Property

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

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

Syntax

'Declaration
'Usage

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.

Example

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 Namespace