TextSpanHelper::EndsBeforeEndOf Method (TextSpan, TextSpan)

 

Determines whether the first span ends before the end of the second span.

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

public:
static bool EndsBeforeEndOf(
	TextSpan span1,
	TextSpan span2
)

Parameters

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

[in] The first TextSpan object.

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

[in] The second TextSpan object.

Return Value

Type: System::Boolean

Returns true if the end of span1 is less than or equal to the end of span2; otherwise, returns false.

This method compares only the end points of the spans. Therefore, this test does not mean that the two spans intersect, only that the end of the first span occurs at or before the end of the second span.

Return to top
Show: