TextEncoding.Format

From Xojo Documentation

Property (As Integer )
aTextEncoding.Format = newIntegerValue
or
IntegerValue = aTextEncoding.Format

Supported for all project types and targets.

A format for the Base text encoding.

Notes

Used by Unicode for defining which format of Unicode you wish to use.

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