InjectedInputPenInfo.TiltX Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the angle of tilt of the pointer along the x-axis.
public:
property int TiltX { int get(); void set(int value); };
int TiltX();
void TiltX(int value);
public int TiltX { get; set; }
var int32 = injectedInputPenInfo.tiltX;
injectedInputPenInfo.tiltX = int32;
Public Property TiltX As Integer
Property Value
int
The angle of tilt of the pointer along the x-axis in a range of -90 to +90, with a positive value indicating a tilt to the right. 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" />