TextEncoding.Base

From Xojo Documentation

Read-Only Property (As Integer )
IntegerValue = aTextEncoding.Base

Supported for all project types and targets.

The type of encoding. The entry for TextConverter contains the possible values of Base.

Example

This example returns the Base, Format, and Variant values for the text in TextArea1.

Var t As TextEncoding
t = Encoding(TextArea1.Value)
If t <> Nil then
Label1.Value = "Base=" + t.Base.ToString
Label2.Value = "Format=" + t.Format.ToString
Label3.Value = "Variant=" + t.Variant.ToString
End If