method Insert(Index: Number, Text: String)
Available for StringList Objects. Inserts the string Text at position number Index.
Insert method syntax has these named arguments:
Parameter |
Description |
|---|---|
Index |
Required. The Index number position to insert the String. |
Text |
Required. The text to be inserted into the String List. |
For example:
strList.Insert(1, "Second")
will insert the string Second in the second position in the list.