KeyEventArgs.IsRepeat プロパティ

定義

イベントによって参照されるキーボード キーが繰り返されたキーかどうかを示す値を取得します。

public:
 property bool IsRepeat { bool get(); };
public bool IsRepeat { get; }
member this.IsRepeat : bool
Public ReadOnly Property IsRepeat As Boolean

プロパティ値

キーが繰り返されている場合は true。それ以外の場合は false。 既定値はありません。

次の例では、 プロパティの状態IsRepeatを取得して、 のKeyEventArgsインスタンスに関連付けられているキーが繰り返しキーであるかどうかを確認します。

// e is an instance of KeyEventArgs.
// btnIsRepeat is a Button.
if (e.IsRepeat)
{
    btnIsRepeat.Background = Brushes.AliceBlue;
}
' e is an instance of KeyEventArgs.
' btnIsRepeat is a Button.
If e.IsRepeat Then
    btnIsRepeat.Background = Brushes.AliceBlue
End If

適用対象

こちらもご覧ください