InjectedInputPoint Struct

Definition

Contains the screen coordinates of the pointer in device-independent pixel (DIP).

public value class InjectedInputPoint
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 196608)]
struct InjectedInputPoint
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 196608)]
public struct InjectedInputPoint
var injectedInputPoint = {
positionX : /* Your value */,
positionY : /* Your value */
}
Public Structure InjectedInputPoint
Inheritance
InjectedInputPoint
Attributes

Windows requirements

Device family
Windows 10 Anniversary Edition (introduced in 10.0.14393.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v3.0)

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" />

Fields

PositionX

The x-coordinate of the pointer in device-independent pixel (DIP).

PositionY

The y-coordinate of the pointer in device-independent pixel (DIP).

Applies to

See also