Programming Reference Manual
 
Syntax
 
long = stringclassobject.isUTF8
 
Description
Returns TRUE if the contents of the object contains UTF8 encoded characters.
 
See Also
Example
 
Sub Main
 
Dim myStr As New StringClass
 
myStr = "Türkiye"
 
Debug.Print myStr.isUTF8 'True
 
End Sub