Share via


InjectedInputPenInfo.PenParameters Property

Definition

Gets or sets the pen states used to simulate pen input.

public:
 property InjectedInputPenParameters PenParameters { InjectedInputPenParameters get(); void set(InjectedInputPenParameters value); };
InjectedInputPenParameters PenParameters();

void PenParameters(InjectedInputPenParameters value);
public InjectedInputPenParameters PenParameters { get; set; }
var injectedInputPenParameters = injectedInputPenInfo.penParameters;
injectedInputPenInfo.penParameters = injectedInputPenParameters;
Public Property PenParameters As InjectedInputPenParameters

Property Value

The pen states used to simulate pen input.

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