StringBuilder: Insert

Insert

Inserts a string into the current string value.



 Public Function Insert(
	  ByVal Index As Long,
	  ByRef Value As Variant,
	  Optional ByVal Count As Long = 1 ) As StringBuilder

Parameters

Index
[ByVal] Long. The index in the string value to start inserting the new string.
Value
[ByRef] Variant. The string to be inserted.
Count
[ByVal] Optional. Long. The number of times to insert the string.  

Default: 1

Return Values

StringBuilder -  This instance of StringBuilder

See Also

Project CorLib Overview

Class StringBuilder Overview