TextSpanHelper.ContainsExclusive 方法
确定给定位置是在给定范围包含,不包括起点,和终点。
命名空间: Microsoft.VisualStudio.Package
程序集: Microsoft.VisualStudio.Package.LanguageService.11.0(在 Microsoft.VisualStudio.Package.LanguageService.11.0.dll 中)
Microsoft.VisualStudio.Package.LanguageService(在 Microsoft.VisualStudio.Package.LanguageService.dll 中)
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 中)
语法
声明
Public Shared Function ContainsExclusive ( _
span As TextSpan, _
line As Integer, _
col As Integer _
) As Boolean
public static bool ContainsExclusive(
TextSpan span,
int line,
int col
)
参数
- span
类型:Microsoft.VisualStudio.TextManager.Interop.TextSpan
[in] 测试的 TextSpan 对象。
- line
类型:System.Int32
[in] 测试的位置的行索引。
- col
类型:System.Int32
[in] 测试的位置的列索引。
返回值
类型:System.Boolean
与该范围的末尾返回 true ,如果给定位置高于其大小和最少的开头大。返回 false ,如果该位置与起点正确相等或该范围或该位置的末尾处于范围。
备注
使用此方法发现位置是否在范围,但是,不在启动或形状将范围。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。