TCollationTable

Declaration

Source position: unicodedata.pas line 435

Type
TCollationTable = record
private
  FItems : TCollationTableItemArray;
  FCount : Integer;
  function GetCapacity : Integer;
  function GetCount : Integer;
  function GetItem(const AIndex: Integer) : PCollationTableItem;
  procedure Grow;
  procedure ClearItem(AItem: PCollationTableItem);
  AddAlias;
public
  class function NormalizeName(AName: UnicodeString) : UnicodeString
                              ;  Static;
  procedure Clear;
  IndexOf;
  Find;
  function Add(ACollation: PUCA\_DataBook) : Integer;
  function Remove(AIndex: Integer) : PUCA\_DataBook;
  property Item[AIndex: Integer]: PCollationTableItem; default;
  property Count : Integer;
  property Capacity : Integer;
end