Reputation: 21
There is a panel in Windows 10 called Tablet PC Settings which has a button that allows a user to calibrate the touch input.
I would like to programmatically call this calibration tool, but can't find an API to do it.
Does anybody know if there is an API for this?
Thanks!
Upvotes: 2
Views: 1997
Reputation: 305
As Alex and kowsikbabu suggested, the easiest way is to invoke the MultiDitiMon process with the -touch or -pen argument
Process.Start(@"C:\Windows\System32\MultiDigiMon.exe", "-touch");
Process.Start(@"C:\Windows\System32\MultiDigiMon.exe", "-pen");
Upvotes: 2