KeyEventArgs.IsRepeat Property

Definition

Gets a value that indicates whether the keyboard key referenced by the event is a repeated key.

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

Property Value

true if the key is repeated; otherwise, false. There is no default value.

Examples

The following example checks whether the key associated with an instance of KeyEventArgs is a repeated key by obtaining the state of the IsRepeat property.

// 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

Applies to

See also