Share via


InjectedInputMouseInfo.DeltaX Property

Definition

Gets or sets the change in the x-coordinate value of the mouse cursor.

public:
 property int DeltaX { int get(); void set(int value); };
int DeltaX();

void DeltaX(int value);
public int DeltaX { get; set; }
var int32 = injectedInputMouseInfo.deltaX;
injectedInputMouseInfo.deltaX = int32;
Public Property DeltaX As Integer

Property Value

Int32

int

The change in the x-coordinate value of the mouse cursor. The default value is 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 to be declared in the application manifest. For more information on app capability requirements, see App capability declarations.

To use the input injection APIs, open the Package.appxmanifest file and add the following (the rescap namespace hosts the restricted capabilities, whuch lets you declare the inputInjectionBrokered capability in the Capabilities section).

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

Applies to

See also