ToolBoxTabs.Item Method

Returns an indexed member of a ToolBoxTabs collection.

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

'Declaration
Function Item ( _
    index As Object _
) As ToolBoxTab
ToolBoxTab Item(
    Object index
)
ToolBoxTab^ Item(
    Object^ index
)
abstract Item : 
        index:Object -> ToolBoxTab
function Item(
    index : Object
) : ToolBoxTab

Parameters

  • index
    Type: System.Object

    Required. The index of the item to return.

Return Value

Type: EnvDTE.ToolBoxTab
A ToolBoxTab object.

Remarks

The value passed to Index is an integer that is either an index to a ToolBoxTab object in the ToolBoxTabs collection or a string value that equates to the name of a ToolBoxTab object in the collection.

The Item method throws a ArgumentException exception if the specified index value cannot be found.

.NET Framework Security

See Also

Reference

ToolBoxTabs Interface

EnvDTE Namespace

Other Resources

How to: Compile and Run the Automation Object Model Code Examples