Source.GetWordExtent 方法

获取范围集占用由单词在指定的位置。

命名空间:  Microsoft.VisualStudio.Package
程序集:   Microsoft.VisualStudio.Package.LanguageService.10.0(在 Microsoft.VisualStudio.Package.LanguageService.10.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.9.0(在 Microsoft.VisualStudio.Package.LanguageService.9.0.dll 中)

语法

声明
Public Function GetWordExtent ( _
    line As Integer, _
    idx As Integer, _
    flags As WORDEXTFLAGS, _
    <OutAttribute> ByRef startIdx As Integer, _
    <OutAttribute> ByRef endIdx As Integer _
) As Boolean
public bool GetWordExtent(
    int line,
    int idx,
    WORDEXTFLAGS flags,
    out int startIdx,
    out int endIdx
)

参数

  • idx
    类型:System.Int32
    偏移量行中的某处在运行 (不必是在单词的开始处)。
  • startIdx
    类型:System.Int32%
    [out] 返回单词的第一个字符的偏移量。
  • endIdx
    类型:System.Int32%
    [out] 返回字符一的偏移量通过单词的最后一个字符的。

返回值

类型:System.Boolean
true ,如果找到单词;否则, false,这意味着不会在该位置。

备注

此方法调用 colorizer 的 GetLineInfo 方法获取标记中指定的行。 然后使用该标记列表和指定的标志,此方法会查找请求的标记。

.NET Framework 安全性

请参见

参考

Source 类

Microsoft.VisualStudio.Package 命名空间