TextEncoding.InternetName

From Xojo Documentation

Property (As String )
aTextEncoding.InternetName = newStringValue
or
StringValue = aTextEncoding.InternetName

Supported for all project types and targets.

Internet Text Encoding name, such as UTF-8.

Example

This example gets the internet name of the text encoding in TextArea1.

Var t As TextEncoding
t = Encoding(TextArea1.Value)
If t <> Nil Then
Var s As String
s = t.InternetName
MessageBox(s)
End If