This document is archived and information here might be outdated. Recommended version. |
ArcObjects namespaces > System > ESRI.ArcGIS.esriSystem > Interfaces > IS > IStringArray Interface > IStringArray.Insert Method (ArcObjects .NET 10.4 SDK) |
Add an element at the specified posiiton.
[Visual Basic .NET] Public Sub Insert ( _ ByVal index As Integer, _ ByVal Element As String _ )
[C#] public void Insert ( int index, string Element );
[C++]
HRESULT Insert(
long index,
BSTR Element
);
[C++]
Parameters index [in] index is a parameter of type long Element [in] Element is a parameter of type BSTR
Adds the element to the array at the specified index. 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.