Source.SetText 方法 (Int32, Int32, Int32, Int32, String)
用给定文本替换源中的指定部分。
命名空间: 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 Sub SetText ( _
startLine As Integer, _
startCol As Integer, _
endLine As Integer, _
endCol As Integer, _
newText As String _
)
public void SetText(
int startLine,
int startCol,
int endLine,
int endCol,
string newText
)
参数
- startLine
类型:System.Int32
替换的源第一行。
- startCol
类型:System.Int32
第一个字符的开头按替换的第一行中。
- endLine
类型:System.Int32
替换的源最后一行。
- endCol
类型:System.Int32
在替换的最后一行中最后一个字符偏移量。
- newText
类型:System.String
新文本。
备注
此方法验证输入范围,然后调用 ReplaceLines 方法使用新文本替换为指定的部分。
如果 newText 空值,则给定范围中删除。
,如果存在错误,此方法可能会引发异常。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。