Share via


InjectedInputMouseInfo.TimeOffsetInMilliseconds Property

Definition

Gets or sets the baseline, or reference value, for timed input events such as a double click/tap.

public:
 property unsigned int TimeOffsetInMilliseconds { unsigned int get(); void set(unsigned int value); };
uint32_t TimeOffsetInMilliseconds();

void TimeOffsetInMilliseconds(uint32_t value);
public uint TimeOffsetInMilliseconds { get; set; }
var uInt32 = injectedInputMouseInfo.timeOffsetInMilliseconds;
injectedInputMouseInfo.timeOffsetInMilliseconds = uInt32;
Public Property TimeOffsetInMilliseconds As UInteger

Property Value

UInt32

unsigned int

uint32_t

The reference value for timed input events in milliseconds. If TimeOffsetInMilliseconds is set to 0, the current tick count is used.

Examples

Here are some downloadable samples demonstrating basic input and input injection:

Remarks

Important

The APIs in this namespace require the inputInjectionBrokered restricted capability to be declared in the application manifest. For more information on app capability requirements, see App capability declarations.

To use the input injection APIs, open the Package.appxmanifest file and add the following (the rescap namespace hosts the restricted capabilities, whuch lets you declare the inputInjectionBrokered capability in the Capabilities section).

  • To <Package>
    • xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="rescap"
  • In <Capabilities>
    • <rescap:Capability Name="inputInjectionBrokered" />

Applies to

See also