ITaskbarList3 interface provides only setter methods. Is there a way to get the information (like HWND list of the tabs) for a specific taskbar entry?
Asked
Active
Viewed 337 times
1 Answers
1
No that's not possible through the taskbar API. The system has been designed with the intention that you'll only work on taskbar buttons that you own. In which case there's no need for getters since you can remember for yourself what value you last passed to a setter, should you need to.

David Heffernan
- 601,492
- 42
- 1,072
- 1,490
-
I will not really change the data, i need it for some debuging purposes. But because of your statement, i will think up something else. Thanks! – Alex Volodko Jun 13 '11 at 14:23
-
@XHelp I'm sure you wouldn't be so naughty, but plenty of other people would!! – David Heffernan Jun 13 '11 at 14:26
-
I know it's quite an old topic but I wanted to know; how does only allowing setters PREVENT others modifying the tabs of other applications? I've just messed around with my windows explorer tab. Surely only providing getters stops people from modifying the information? – Edward Sep 10 '14 at 06:20