This document is archived and information here might be outdated.  Recommended version.


IOperationStack.Item Property (ArcObjects .NET 10.4 SDK)
ArcObjects Library Reference (SystemUI)  

IOperationStack.Item Property

The operation at the specified index.

[Visual Basic .NET]
Public Function get_Item ( _
    ByVal index As Integer _
) As IOperation
[C#]
public IOperation get_Item (
    int index
);
[C++]
HRESULT get_Item(
  long index,
  IOperation** operation
);
[C++]

Parameters index [in] index is a parameter of type long operation [out, retval]
operation is a parameter of type IOperation

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

The Item property is used to access a specific operation on the OperationStack. The operation at the beginning or top of the collection has an index of 0 and the operation at the end of the collection has an index of IOperationStack::Count - 1. 

See Also

IOperationStack Interface