Share via


InjectedInputPenInfo.Pressure Property

Definition

Gets or sets the force exerted by the pointer device on the surface of the digitizer.

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

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

Property Value

Double

double

A value between 0 and 1 that represents the pen contact force exerted on the digitizer surface. 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