SystemSounds.Hand プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在の Windows サウンド スキームで Hand
プログラム イベントに関連付けられているサウンドを取得します。
public:
static property System::Media::SystemSound ^ Hand { System::Media::SystemSound ^ get(); };
public static System.Media.SystemSound Hand { get; }
static member Hand : System.Media.SystemSound
Public Shared ReadOnly Property Hand As SystemSound
プロパティ値
現在の Windows サウンド スキームで Hand
プログラム イベントに関連付けられている SystemSound。
例
次のコード例では、 プロパティの使用方法を Hand 示します。
// Plays the sound associated with the Hand system event.
SystemSounds::Hand->Play();
// Plays the sound associated with the Hand system event.
SystemSounds.Hand.Play();
' Plays the sound associated with the Hand system event.
SystemSounds.Hand.Play()