LanguageService.OnCaretMoved 方法
调用,则插入符号移动。
命名空间: Microsoft.VisualStudio.Package
程序集: Microsoft.VisualStudio.Package.LanguageService.9.0(在 Microsoft.VisualStudio.Package.LanguageService.9.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService.10.0(在 Microsoft.VisualStudio.Package.LanguageService.10.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService.11.0(在 Microsoft.VisualStudio.Package.LanguageService.11.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService(在 Microsoft.VisualStudio.Package.LanguageService.dll 中)
语法
声明
Public Overridable Sub OnCaretMoved ( _
mgr As CodeWindowManager, _
textView As IVsTextView, _
line As Integer, _
col As Integer _
)
public virtual void OnCaretMoved(
CodeWindowManager mgr,
IVsTextView textView,
int line,
int col
)
参数
- mgr
类型:Microsoft.VisualStudio.Package.CodeWindowManager
[in] 控件插入符号移动的代码窗口的 CodeWindowManager 对象。
- textView
类型:Microsoft.VisualStudio.TextManager.Interop.IVsTextView
[in] 持有源文件的视图的 IVsTextView 对象。
- line
类型:System.Int32
[in] 新行插入符号打开。
- col
类型:System.Int32
[in] 新列脱字号所在。
备注
如果要执行特定的任何内容,则移动脱字号时时,必须从 LanguageService 类派生类并实现此方法。请确保在特定需求之前调用此方法的基类版本其中之一。
,如果一个下拉栏添加到文本视图,基方法调用内部 TypeAndMemberDropdownBars.SynchronizeDropdowns 方法。TypeAndMemberDropdownBars.SynchronizeDropdowns 调用虚方法, OnSynchronizeDropdowns,然后刷新组合框。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。