Programming Reference Manual
 
Syntax
 
long = stringclassobject.Length
 
Description
Returns the length, measured in characters, of the text that the StringClass variable returns.
 
The initial value of Length = 0 (zero, empty text buffer)
 
See Also
Example
 
Sub Main
 
Dim myStr As New StringClass
 
Debug.Print myStr.Length '0
 
myStr.Append "Test"
 
Debug.Print myStr.Length '4
 
End Sub