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.
Parameter | Description |
---|---|
ANSI_value | The decimal value of the ANSI character. |
Unicode_value | The 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)