TextSpanHelper.ContainsExclusive(TextSpan, Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Determines whether the given position is contained in the given span, not including the start and end points.
public:
static bool ContainsExclusive(Microsoft::VisualStudio::TextManager::Interop::TextSpan span, int line, int col);
public:
static bool ContainsExclusive(Microsoft::VisualStudio::TextManager::Interop::TextSpan span, int line, int col);
static bool ContainsExclusive(Microsoft::VisualStudio::TextManager::Interop::TextSpan span, int line, int col);
public static bool ContainsExclusive (Microsoft.VisualStudio.TextManager.Interop.TextSpan span, int line, int col);
static member ContainsExclusive : Microsoft.VisualStudio.TextManager.Interop.TextSpan * int * int -> bool
Public Shared Function ContainsExclusive (span As TextSpan, line As Integer, col As Integer) As Boolean
Parameters
- line
- Int32
[in] The line index of the position to test.
- col
- Int32
[in] The column index of the position to test.
Returns
Returns true
if the given position is greater than the start of the span and less than the end of the span. Returns false
if the position is exactly equal to the start or end of the span or the position is outside the span.
Remarks
Use this method to see whether a position is in a span, but not at the starting or ending point of the span.