System.TResStringRec

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

Delphi

  TResStringRec = packed record
    Module: ^HMODULE;
    Identifier: NativeUint;
  end;

C++

struct DECLSPEC_DRECORD TResStringRec
{
public:
    NativeUInt *Module;
    NativeUInt Identifier;
};

プロパティ

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

説明

文字列リソースを表します。


TResStringRec は、文字列リソースを表します。TResStringRec は、文字列リソースのモジュールと識別子を含む構造体です。TResStringRec 型の変数は、System ユニットのルーチンが実行時に文字列リソースを探して読み込むときに使用されます。

モバイル アプリケーションの場合、TResStringRecMarshaledAString が含まれていて、それがモバイル プラットフォームでのリソース文字列の検索に使われます。

関連項目