UIHierarchyItems.Item Method
Returns a UIHierarchyItem object in a UIHierarchyItems collection.
Namespace: EnvDTE
Assembly: EnvDTE (in EnvDTE.dll)
Syntax
'Declaration
Function Item ( _
index As Object _
) As UIHierarchyItem
UIHierarchyItem Item(
Object index
)
UIHierarchyItem^ Item(
[InAttribute] Object^ index
)
abstract Item :
index:Object -> UIHierarchyItem
function Item(
index : Object
) : UIHierarchyItem
Parameters
index
Type: System.ObjectRequired. The index of the UIHierarchyItem object to return.
Return Value
Type: EnvDTE.UIHierarchyItem
A UIHierarchyItem object.
Remarks
The value passed to Index is an integer that is either an index to a UIHierarchyItem object in its UIHierarchyItems collection, such as OutputWindowPanes.Item(4), or the name of a UIHierarchyItem object in the collection.
The Item method throws a ArgumentException exception if the collection cannot find the object that corresponds to the index value.
.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