Description

Establishes the mapping between an ANSI numeric value and a Unicode numeric value.

Syntax

SetANSIToUnicode (ANSI_value, Unicode_value)

Parameters

The SetANSIToUnicode subroutine has the following parameters.

ParameterDescription
ANSI_valueThe decimal value of the ANSI character.
Unicode_valueThe decimal value of the Unicode character.

See also

GetANSIToUnicode()GetUnicodeToANSI()

Example

* Maps the ANSI value 221 to the Unicode value 1000
Call SetANSIToUnicode(221, 1000)
  • No labels