Programming Reference Manual
 
Syntax
 
string = stringclassobject.CharacterAt(Pos)
 
Description
Returns a single character from the StringClass variable at the given position.
 
Parameter
Description
Pos
Long Integer, the position of the character in the text buffer
See Also
Example
 
Sub Main
 
Dim myStr As New StringClass
 
myStr.Append "Test"
 
Debug.Print myStr.CharacterAt(3) 's
 
End Sub