Programming Reference Manual
 
Syntax
 
stringclassobject.Prepend S$
 
Description
Inserts a string before the text buffer.
 
Parameter
Description
S$
The string value that is to be inserted to the text buffer.
See Also
Example
 
Sub Main
 
Dim myStr As New StringClass
 
myStr.Append "World!"
myStr.Prepend "Hello, "
 
Debug.Print myStr 'Hello, world!
 
End Sub