TUC_Prop

Unicode character properties record

Declaration

Source position: unicodedata.pas line 286

Type
TUC\_Prop = packed record
private
  function GetCategory : Byte;
  procedure SetCategory(AValue: Byte);
  function GetWhiteSpace : Boolean;
  procedure SetWhiteSpace(AValue: Boolean);
  function GetHangulSyllable : Boolean;
  procedure SetHangulSyllable(AValue: Boolean);
  function GetNumericValue : Double;
public
  CategoryData : Byte;
  CCC : Byte;
  NumericIndex : Byte;
  SimpleUpperCase : UInt24;
  SimpleLowerCase : UInt24;
  DecompositionID : SmallInt;
  property Category : Byte;
  property WhiteSpace : Boolean;
  property HangulSyllable : Boolean;
  property NumericValue : Double;
end

Description

TUC_Prop describes the collation characteristics of a unicode character. It is an internal structure which should not be used directly, the actual structure is subject to change.