Programming Reference Manual
 
Syntax
 
Size = stringclassobject.BufferSize
strinclassobject.BufferSize = Size
 
Description
Sets or returns the size of the memory buffer as used for the internal stored text. The length of the stored text can exceed that of Size. In that case the size will be repeatedly enlarged with Size characters, until the required length for text storage is reached.
 
The initial value of BufferSize = 10000.
 
Parameter
Description
Size
Long integer, number of characters of the memory buffer.
See Also
Example
 
Sub Main
 
Dim myStr As New StringClass
 
Debug.Print myStr.BufferSize '10000
 
End Sub