InjectedInputMouseInfo.TimeOffsetInMilliseconds 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 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
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" />