num2Char Function [AX 2012]

Updated: December 10, 2009

Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012

Converts an integer to the corresponding ASCII character.


str num2Char(int figure)

Parameter

Description

figure

The integer to convert to a character.

The character that is represented by the specified integer.

static void num2CharExample(Args _arg)
{
    str s;
    ;
    s = num2Char(42);
    // Prints an asterisk–-the character represented by 42.
    print s;
  
    pause;
}

Announcements: To see known issues and recent fixes, use Issue search in Microsoft Dynamics Lifecycle Services (LCS).

Community Additions

ADD
Show: