FMX.ASE.Lexer.TKeyWordRec

提供: RAD Studio API Documentation
移動先: 案内検索

Delphi

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

C++

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

プロパティ

種類 可視性 ソース ユニット
record
struct
public
FMX.ASE.Lexer.pas
FMX.ASE.Lexer.hpp
FMX.ASE.Lexer FMX.ASE.Lexer

説明

キーワードとそのハッシュが格納されるレコードです。


TKeyWordRec は、文字列としての ASE キーワードとそれに対応するハッシュ値を保持するためのレコードです。

関連項目