System.UCS4String

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

UCS4String = array of UCS4Char;

C++

typedef DynamicArray<UCS4Char> UCS4String;     //

Properties

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

Description

UCS4String is used for working with 4–byte Unicode characters.

UCS4Char represents a 4–byte Unicode character. UCS4String, which is a dynamic array of UCS4Char, represents a string encoded using UCS4 (4–byte Unicode).

As UCS4String is a null-terminated array, it always has at least one item.

See Also