ProvideLanguageServiceAttribute.ShowCompletion 属性

确定 语句完成 选项是否在 选项 对话框中启用。

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

语法

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

属性值

类型:System.Boolean
,如果 语句完成 启用选项,则返回; true 否则,返回 false。

备注

如果语言服务支持 IntelliSense 操作完成单词,参数信息并列出成员,则应设置 ShowCompletion 属性设置为 true 启用 " 选项 " 对话框中的 语句完成 选项。 这些选项包括 自动列出成员隐藏高级成员参数信息

此属性为所有语言服务实现可用。

默认值为 false,指示 语句完成 选项禁用。

注册表项如下所示:

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

示例

    [ProvideLanguageService(typeof(MyLanguageService),           // Required
                            MyConstants.languageName,            // Required
                            MyConstants.languageNameResourceID,  // Required
        // Optional language service properties
        ShowCompletion = true,  // Statement completion is supported
                           )]

.NET Framework 安全性

请参见

参考

ProvideLanguageServiceAttribute 类

Microsoft.VisualStudio.Shell 命名空间