TaskPanes.Item[Object] Property

Definition

Gets a reference to the specified the TaskPaneObject object from the collection.

public:
 property Microsoft::Office::Interop::InfoPath::TaskPane ^ default[System::Object ^] { Microsoft::Office::Interop::InfoPath::TaskPane ^ get(System::Object ^ varIndex); };
public Microsoft.Office.Interop.InfoPath.TaskPane this[object varIndex] { get; }
member this.Item(obj) : Microsoft.Office.Interop.InfoPath.TaskPane
Default Public ReadOnly Property Item(varIndex As Object) As TaskPane

Parameters

varIndex
Object

A numeric expression that specifies the type of task pane. Based on the XdTaskPaneType enumeration.

Property Value

Examples

Because the Item property is the default property of the TaskPanesCollection collection, it can be used as follows:

TaskPane taskPane = thisXDocument.View.Window.TaskPanes[4];

Remarks

If the value provided for the varIndex argument does not match any existing member of the collection, an error occurs.

After you have set a reference to the TaskPaneObject object that the Item property returns, you can access any of its properties and methods.

Applies to