ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Data.VBFunctionLib Assembly / GrapeCity.Enterprise.Data.VisualBasicReplacement Namespace / Strings Class / Chr Method
Required. An Integer expression representing the code point, or character code, for the character. If charCode is outside the valid range, an System.ArgumentException error occurs. The valid range for Chr is 0 through 255, and the valid range for ChrW is -32768 through 65535.

In This Topic
    Chr Method
    In This Topic
    Returns the character associated with the specified character code.
    Syntax
    'Declaration
     
    Public Shared Function Chr( _
       ByVal charCode As Integer _
    ) As Char
    public static char Chr( 
       int charCode
    )

    Parameters

    charCode
    Required. An Integer expression representing the code point, or character code, for the character. If charCode is outside the valid range, an System.ArgumentException error occurs. The valid range for Chr is 0 through 255, and the valid range for ChrW is -32768 through 65535.

    Return Value

    Returns the character associated with the specified character code.
    See Also