InjectedInputPenInfo.Rotation Property

Definition

Gets or sets the clockwise rotation, or twist, of the pointer.

public:
 property double Rotation { double get(); void set(double value); };
double Rotation();

void Rotation(double value);
public double Rotation { get; set; }
var double = injectedInputPenInfo.rotation;
injectedInputPenInfo.rotation = double;
Public Property Rotation As Double

Property Value

Double

double

The clockwise rotation, or twist, of the pointer normalized to a range between 0 and 359. 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