Replaces an object in the array.
[Visual Basic .NET] Public Sub Replace ( _ ByVal index As Integer, _ ByVal unk As Object _ )
[C#] public void Replace ( int index, object unk );
[C++]
HRESULT Replace(
long index,
LPUNKNOWN unk
);
[C++]Parameters
index [in] index is a parameter of type long unk [in] unk is a parameter of type LPUNKNOWN
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
Description
Replaces the element at the specified index in the array with the specified element. The element at the beginning or the array has an index of 0, and the element at the end of the array has in index of Count - 1.