ProvideLanguageServiceAttribute.AutoOutlining 属性

确定语言服务是否支持自动大纲显示。

命名空间:  Microsoft.VisualStudio.Shell
程序集:  Microsoft.VisualStudio.Shell.11.0(在 Microsoft.VisualStudio.Shell.11.0.dll 中)

语法

声明
Public Property AutoOutlining As Boolean
public bool AutoOutlining { get; set; }

属性值

类型:System.Boolean
,如果语言服务支持自动大纲显示,则返回; true 否则,返回 false。

备注

允许源代码概述用于降低程序的可视化复杂折叠到轮廓,,例如,隐藏所有方案目录,只显示方法的名称。 Visual Studio 支持显式大纲显示用户可以标记源代码的区域和隐藏它的位置。 自动大纲显示支持,如果语言服务能够分析语言和自动生成可以隐藏的区域。

此属性特定于托管包结构 (MPF)。

,在对应的注册表项。 LanguagePreferences 类时,获取默认是 true 。

注册表项如下所示:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\[X.Y]\Languages\Language Services\
  [Language Name]\
    AutoOutlining = reg_dword: 0x00000001

示例

    [ProvideLanguageService(typeof(MyLanguageService),           // Required
                            MyConstants.languageName,            // Required
                            MyConstants.languageNameResourceID,  // Required
        // Optional language service properties
        AutoOutlining = true,  // Automatic outlining supported
                           )]

.NET Framework 安全性

请参见

参考

ProvideLanguageServiceAttribute 类

Microsoft.VisualStudio.Shell 命名空间