InjectedInputTouchInfo.Contact Property

Definition

Gets or sets the bounding box that represents the touch contact area.

public:
 property InjectedInputRectangle Contact { InjectedInputRectangle get(); void set(InjectedInputRectangle value); };
InjectedInputRectangle Contact();

void Contact(InjectedInputRectangle value);
public InjectedInputRectangle Contact { get; set; }
var injectedInputRectangle = injectedInputTouchInfo.contact;
injectedInputTouchInfo.contact = injectedInputRectangle;
Public Property Contact As InjectedInputRectangle

Property Value

The contact area in device-independent pixel (DIP). The default is a 0-by-0 rectangle, centered around the pointer PixelLocation.

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