1

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!

  • is it a process? you might want to start that process manually using `Process.Start()` – Alex Mar 20 '19 at 12:34
  • when the Calibration tool is running, open the task manager to see what applications are running, if you're find the calibration tool as a process, Just call Process.Start("Process_name_here"). If it is running from a service, then you have to find out which service it uses and how to call the specific method – kowsikbabu Mar 20 '19 at 12:36
  • Did you ever found a solution for this? – Macaret Jul 22 '20 at 07:18

1 Answers1

2

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");
Ivan
  • 305
  • 2
  • 8