| InputSettingsRepetitionInterval Property |
Gets or sets the repetition interval for virtual key or button presses.
Namespace: DigitalRune.Game.InputAssembly: DigitalRune.Game.Input (in DigitalRune.Game.Input.dll) Version: 1.8.0.0 (1.8.0.14467)
Syntax public TimeSpan RepetitionInterval { get; set; }
Public Property RepetitionInterval As TimeSpan
Get
Set
public:
property TimeSpan RepetitionInterval {
TimeSpan get ();
void set (TimeSpan value);
}
member RepetitionInterval : TimeSpan with get, set
Property Value
Type:
TimeSpanThe repetition interval. The default value is 100 ms.
Remarks
If a key or button is held down for longer than the
RepetitionDelay,
the input service will start to generate virtual key/button presses at a rate defined by
RepetitionInterval. (See
IInputService for more info.)
See Also