ProvideLanguageServiceAttribute.DefaultToInsertSpaces 属性
确定设置为 选项 对话框的 插入空格 选项的默认语言服务的。
命名空间: Microsoft.VisualStudio.Shell
程序集: Microsoft.VisualStudio.Shell.11.0(在 Microsoft.VisualStudio.Shell.11.0.dll 中)
语法
声明
Public Property DefaultToInsertSpaces As Boolean
public bool DefaultToInsertSpaces { get; set; }
属性值
类型:System.Boolean
,如果语言服务的格式,最初使用空格返回 true ;否则,返回 false 指示语言服务使用选项。
备注
语言服务可以支持通常需要插入或移除空白在行首为适当的级别调整其缩进的格式设置源代码 ( EnableFormatSelection 属性设置为 true)。 用于设置使用哪种空白从 选项 对话框进行控制 (可从 工具 - AMP_GT 选项 菜单),通常在每种语言的 选项 属性页下。 DefaultToInsertSpaces 属性确定最初设置 插入空格 选项。
此属性是所有语言服务实现可用。
默认值为 false,指示 插入空格 选项最初未被选定。
注册表项如下所示:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\[X.Y]\Languages\Language Services\
[Language Name]\
DefaultToInsertSpaces = reg_dword: 0x00000001
示例
[ProvideLanguageService(typeof(MyLanguageService), // Required
MyConstants.languageName, // Required
MyConstants.languageNameResourceID, // Required
// Optional language service properties
DefaultToInsertSpaces = true, // Use spaces for formatting
)]
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。