我有一个宏/插件,我需要在其中临时禁用 Vb.Net漂亮列表。
试图录制一个宏,但它只显示我打开了选项对话框。
也试过
Dim props As EnvDTE.Properties = DTE.Properties("TextEditor", "Basic")
但是 props 集合不包含 VB 特定下的任何选项。
(General 和 Tabs 的选项在集合中)
我有一个宏/插件,我需要在其中临时禁用 Vb.Net漂亮列表。
试图录制一个宏,但它只显示我打开了选项对话框。
也试过
Dim props As EnvDTE.Properties = DTE.Properties("TextEditor", "Basic")
但是 props 集合不包含 VB 特定下的任何选项。
(General 和 Tabs 的选项在集合中)
在此处找到选项列表
就我而言,它是
Dim prettyListingProperty = DTE.Properties("TextEditor", "Basic-Specific").Item("PrettyListing")