Source.GetText 方法 (Int32, Int32, Int32, Int32)

获取文本在指定的位置之间。

命名空间:  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 GetText ( _
    startLine As Integer, _
    startCol As Integer, _
    endLine As Integer, _
    endCol As Integer _
) As String
public string GetText(
    int startLine,
    int startCol,
    int endLine,
    int endCol
)

参数

  • startLine
    类型:System.Int32
    获取的第一行文本。
  • startCol
    类型:System.Int32
    在获取的第一行到第一个字符的偏移量。
  • endLine
    类型:System.Int32
    获取的文本最后一行。
  • endCol
    类型:System.Int32
    在最后一行的偏移量。获取的最后一个字符。

返回值

类型:System.String
所需的文本。这是一个空字符串。

备注

此方法以 GetLineText 方法的调用在 IVsTextLines 对象将对 Source 类构造函数。 ,如果 GetLineText 返回 false,此方法将引发异常。

.NET Framework 安全性

请参见

参考

Source 类

GetText 重载

Microsoft.VisualStudio.Package 命名空间