Programming Reference Manual
 
Syntax
 
string = stringclassoject.ProperCase()
 
Description
Returns the proper case characters of the StringClass variable
 
See Also
Example
 
Sub Main
 
Dim myStr As New StringClass
 
myStr.Append "mr jones smith"
 
Debug.Print myStr.ProperCase 'Mr Jones Smith
 
End Sub