c# - Programmatically change Visual Studio Options -
how programmatically set , unset visual studio options?
i have done research , troubleshooting , found not possible, ironically now find myself needing functionality.
here question answered specifying why not possible programmitically click buttons in vs options dialog: programmatically reset visualstudio shortcuts.
i dont need click button, need change boolean setting per screenshot.
please... if have undocumented methods.. please me. improve every developers life, particularly newbies.
just use:
dte.properties["debugging", "general"].item("enableexceptionassistant").value=false;
most of options can retrieved , set way. see also:
options page, debugging node properties
howto: getting properties dte.properties collection of visual studio .net.
Comments
Post a Comment