FMX.ASE.Lexer.TKeyWordRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TKeyWordRec = record
    Str: string;
    Hash: Integer;
  end;

C++

struct DECLSPEC_DRECORD TKeyWordRec
{
public:
    System::UnicodeString Str;
    int Hash;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
FMX.ASE.Lexer.pas
FMX.ASE.Lexer.hpp
FMX.ASE.Lexer FMX.ASE.Lexer

Description

A record that stores a keyword and its hash.

TKeyWordRec is a record used to keep an ASE keyword as a string and the corresponding hash value.

See Also