System.AnsiChar

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type AnsiChar = #0..#255;

C++

typedef char                 AnsiChar;         //

Properties

Type Visibility Source Unit Parent
type
typedef
public
System.pas
sysmac.h
System System

Description

Represents a byte-sized (8-bits) character type.

AnsiChar values are byte-sized (8-bits) characters ordered according to the locale character set, which is possibly multibyte. The first 256 Unicode characters correspond to the ANSI characters.

Note: AnsiCharis used by the Delphi desktop and mobile compilers, for more information see Migrating Delphi Code to Mobile from Desktop.

See Also