InputInjector.InjectShortcut(InjectedInputShortcut) Method

Definition

Sends programmatically generated system shortcuts to the system.

public:
 virtual void InjectShortcut(InjectedInputShortcut shortcut) = InjectShortcut;
void InjectShortcut(InjectedInputShortcut const& shortcut);
public void InjectShortcut(InjectedInputShortcut shortcut);
function injectShortcut(shortcut)
Public Sub InjectShortcut (shortcut As InjectedInputShortcut)

Parameters

shortcut
InjectedInputShortcut

The system shortcuts.

Examples

Here are some downloadable samples demonstrating basic input and input injection:

Remarks

Important

The APIs in this namespace require the inputInjectionBrokered restricted capability.

Using input injection requires the following be added to the Package.appxmanifest:

  • To <Package>
    • xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
    • IgnorableNamespaces="rescap"
  • To <Capabilities>
    • <rescap:Capability Name="inputInjectionBrokered" />

Applies to

See also