Declarations.OnAutoComplete 方法
调用,在声明提交给隐藏源文件。 在派生类中实现时,它提供本身可以是 IntelliSense 另一轮的触发器的完成字符。
命名空间: Microsoft.VisualStudio.Package
程序集: Microsoft.VisualStudio.Package.LanguageService.9.0(在 Microsoft.VisualStudio.Package.LanguageService.9.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService(在 Microsoft.VisualStudio.Package.LanguageService.dll 中)
Microsoft.VisualStudio.Package.LanguageService.11.0(在 Microsoft.VisualStudio.Package.LanguageService.11.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService.10.0(在 Microsoft.VisualStudio.Package.LanguageService.10.0.dll 中)
语法
声明
Public Overridable Function OnAutoComplete ( _
textView As IVsTextView, _
committedText As String, _
commitCharacter As Char, _
index As Integer _
) As Char
public virtual char OnAutoComplete(
IVsTextView textView,
string committedText,
char commitCharacter,
int index
)
参数
- textView
类型:Microsoft.VisualStudio.TextManager.Interop.IVsTextView
[in] 表示显示源文件的视图的 IVsTextView 对象。
- committedText
类型:System.String
[in] 包含插入视为已完成一部分文本的字符串处理。
- commitCharacter
类型:System.Char
[in] 用于提交该文本写入源文件的字符。
- index
类型:System.Int32
[in] 提交到源文件项的索引。
返回值
类型:System.Char
这将返回所做的文本后要插入的字符。如果不要插入任何内容,则返回 0。
备注
在文本提交给源文件后,此方法调用完成已更改的字符。 例如,在 XML 编辑器,因此,如果用户选择开始标记 (“tag"), this method is used to insert the end tag automatically ("AMP_LT/tagAMP_GT”)。 该机制确保此方法在这种情况下调用,在 Visual Studio 实际插入到从 OnCommit后的结果, “AMP_LTtag”。
此方法还可用于开始该对话框的字符的另一个承诺。 例如,因此,如果方法名称提交到源文件,并 OnAutoComplete 方法返回一个左括号 (" ("), “(" 然后可以触发 IntelliSense 方法提示操作。
该基方法不执行任何操作并返回 0。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。