FMX.Controls.Presentation.TKeyInfo

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

Delphi

  TKeyInfo = record
    Key: Word;
    KeyChar: System.WideChar;
    Shift: TShiftState;
  end;

C++

struct DECLSPEC_DRECORD TKeyInfo
{
public:
    System::Word Key;
    System::WideChar KeyChar;
    System::Classes::TShiftState Shift;
};

プロパティ

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


説明

TPresentedControl.KeyDownTPresentedControl.KeyUp で、プレゼンテーション層で処理できるキー押下イベント(PMKeyDownPMKeyUp)に関するメッセージの送信に使用されるレコードです。

Key および KeyChar は押されたキーを表し、Shift は、メイン キーと一緒に押された修飾キーの組み合わせを表します。メッセージ ハンドラは、押されたキーを正常に処理した場合、Key = 0 および KeyChar = #0 と代入します。

関連項目