Share via


InjectedInputPenInfo.TiltY Property

Definition

Gets or sets the angle of tilt of the pointer along the y-axis.

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

void TiltY(int value);
public int TiltY { get; set; }
var int32 = injectedInputPenInfo.tiltY;
injectedInputPenInfo.tiltY = int32;
Public Property TiltY As Integer

Property Value

Int32

int

The angle of tilt of the pointer along the y-axis in a range of -90 to +90, with a positive value indicating a tilt toward the user. The default 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.

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