InjectedInputTouchInfo.TouchParameters Property

Definition

Gets or sets the touch states used to simulate touch input.

public:
 property InjectedInputTouchParameters TouchParameters { InjectedInputTouchParameters get(); void set(InjectedInputTouchParameters value); };
InjectedInputTouchParameters TouchParameters();

void TouchParameters(InjectedInputTouchParameters value);
public InjectedInputTouchParameters TouchParameters { get; set; }
var injectedInputTouchParameters = injectedInputTouchInfo.touchParameters;
injectedInputTouchInfo.touchParameters = injectedInputTouchParameters;
Public Property TouchParameters As InjectedInputTouchParameters

Property Value

The touch states used to simulate touch input.

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