Click or drag to resize

ReInputConfigHelpergenerateKeyEventsOnKeyCombinationOverride Property

Determines if key up and down events are generated when the Action(s) bound to one or more modifier keys that are part of a key combination are overridden and resumed when the succeeding key(s) in the key combination are pressed or released. Example: Cntl is bound to Action1. Cntl + W is bound to Action2. When Cntl is pressed, Action1 generates Down and On events. When W is pressed while Cntl is held, should Action1, bound to Cntl, generate an Up event (because it has been overridden and is now off). Similarly, when Cntl + W is held and W is released, if KeyCombinationOverrideMode is set to Pause, should Action1, bound to Cntl, generate a Down event (because it is no longer overridden and resumes returning True)? This setting can be changed without resetting Rewired.

Namespace:  Rewired
Assembly:  Rewired_Core (in Rewired_Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public bool generateKeyEventsOnKeyCombinationOverride { get; set; }

Property Value

Type: Boolean
See Also