TextSpanHelper::ContainsInclusive Method (TextSpan, Int32, Int32)

 

Determines whether the given position is in the span, including the start and end points.

Namespace:   Microsoft.VisualStudio.Package
Assembly:  Microsoft.VisualStudio.Package.LanguageService.14.0 (in Microsoft.VisualStudio.Package.LanguageService.14.0.dll)

public:
static bool ContainsInclusive(
	TextSpan span,
	int line,
	int col
)

Parameters

span
Type: Microsoft.VisualStudio.TextManager.Interop::TextSpan

[in] The TextSpan object that is being tested against.

line
Type: System::Int32

[in] The line index of the position to test.

col
Type: System::Int32

[in] The column index of the position to test.

Return Value

Type: System::Boolean

Returns true if the given position is greater than or equal to the start of the span and less than or equal to the end of the span. Returns false if the given position is entirely outside the span.

Use this to see whether a position is in a span, including the ends of the span.

Return to top
Show: