Turn off pretty listing in visual studio

会有一股神秘感。 提交于 2019-12-02 04:32:39

问题


I have a macro/addin where I need to disable the Vb.Net pretty listing temporary.

Tried to record a macro but it only shows that I opened the options dialog.

Also tried

Dim props As EnvDTE.Properties = DTE.Properties("TextEditor", "Basic")

but the props collection does not contain any of the options under VB Specific.
(The options from General and Tabs are int the collection)


回答1:


Found a listing of options here

In my case it is

Dim prettyListingProperty = DTE.Properties("TextEditor", "Basic-Specific").Item("PrettyListing")


来源:https://stackoverflow.com/questions/13152999/turn-off-pretty-listing-in-visual-studio

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!