InputInjector.InjectTouchInput Method

Definition

Sends programmatically generated touch input to the system.

public:
 virtual void InjectTouchInput(IIterable<InjectedInputTouchInfo ^> ^ input) = InjectTouchInput;
void InjectTouchInput(IIterable<InjectedInputTouchInfo> const& input);
public void InjectTouchInput(IEnumerable<InjectedInputTouchInfo> input);
function injectTouchInput(input)
Public Sub InjectTouchInput (input As IEnumerable(Of InjectedInputTouchInfo))

Parameters

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