| [Overview][Resource strings][Constants][Types][Procedures and functions][Index] | 
Get unicode character data
Source position: unicodedata.pas line 493
function GetProps(  | 
const ACodePoint: Word  | 
):PUC_Prop; overload;  | 
const AHighS: UnicodeChar;  | 
const ALowS: UnicodeChar  | 
):PUC_Prop; overload;  | 
const ACodePoint: Cardinal  | 
):PUC_Prop; overload;  | 
ACodePoint  | 
  | 
Code point (word or cardinal)  | 
Pointer to unicode character data
AHighS  | 
  | 
High character in a UTF16 surrogate pair  | 
ALowS  | 
  | 
Low character in a UTF16 surrogate pair  | 
ACodePoint  | 
  | 
Code point (word or cardinal)  | 
GetProps returns a pointer to a general unicode character property data structure. The character can be specified using a word or cardinal sized codepoint (ACodePoint), or using a UTF16 encoded surrogate pair (AHighS,ALowS).
The returned pointer must not be freed, it points to part of a static structure.
  | 
Get unicode collation algorithm properties for a unicode character  |