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.ObjectRequired. 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Other Resources
How to: Compile and Run the Automation Object Model Code Examples